JVM Languages
jpython.txt
Associated article: Examining JPython
Tags: JVM Languages
Published source code accompanying the article by JPython is a freely available version of Python implemented in 100% pure Java. Since JPython is written in Java, it is easy to include the JPython packages in a Java application and use JPython as your application's scripting engine. JPython also makes an excellent tool for prototyping Java applets that are embedded in web browsers. Also see JPYTHON.ZIP.
Examining JPython by Kirby W. Angell Example 1: (a) JPython 1.0.1 on javaJDK1.1.6_Borland Copyright 1997-1998 Corporation for National Research Initiatives >>> (b) >>> from java.math import BigInteger (c) >>> bi = BigInteger( "100" ) >&...


