Changeset 15518 for trunk/abcl/examples/pure-lisp-to-java
- Timestamp:
- 09/19/21 08:54:56 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/examples/pure-lisp-to-java/Main.java
r12908 r15518 24 24 public class Main 25 25 { 26 /**27 * This example creates an Interpreter instance, loads our28 * lisp code from a file and then looks up a function defined29 * in the loaded lisp file and executes the function.30 *31 * The function takes a single parameter and invokes a java method32 * on the object provided. We provide our Main object as the parameter.33 *34 */35 26 public static int addTwoNumbers(int a, int b) 36 27 {
Note: See TracChangeset
for help on using the changeset viewer.