[armedbear-cvs] r12721 - in trunk/abcl/examples: . java-exception java-interface java-to-lisp-1 java-to-lisp-2 jsr-223 lisp-to-java misc

Mark Evenson mevenson at common-lisp.net
Sun May 23 06:06:07 UTC 2010


Author: mevenson
Date: Sun May 23 02:06:06 2010
New Revision: 12721

Log:
Examples reorganization: move snippets to misc, adjust local READMEs.


Added:
   trunk/abcl/examples/java-exception/README
   trunk/abcl/examples/java-interface/README
   trunk/abcl/examples/java-to-lisp-1/README
   trunk/abcl/examples/java-to-lisp-2/README
   trunk/abcl/examples/jsr-223/README
   trunk/abcl/examples/lisp-to-java/README
   trunk/abcl/examples/misc/dotabclrc
      - copied unchanged from r12718, /trunk/abcl/examples/dotabclrc
   trunk/abcl/examples/misc/hello.java
      - copied unchanged from r12718, /trunk/abcl/examples/hello.java
   trunk/abcl/examples/misc/update-check-enabled.lisp
      - copied unchanged from r12718, /trunk/abcl/examples/update-check-enabled.lisp
Removed:
   trunk/abcl/examples/dotabclrc
   trunk/abcl/examples/hello.java
   trunk/abcl/examples/update-check-enabled.lisp

Added: trunk/abcl/examples/java-exception/README
==============================================================================
--- (empty file)
+++ trunk/abcl/examples/java-exception/README	Sun May 23 02:06:06 2010
@@ -0,0 +1,29 @@
+ABCL Examples Building and Running Instructions
+===============================================
+
+To compile 
+
+    cmd$ javac  -cp ../../dist/abcl.jar  Main.java
+
+where the "../../../dist/abcl.jar" represents the path to your
+abcl.jar file, which is built via the Ant based build.  This path
+could be slightly different depending on how the system was
+constructed, and possibly due to operating system conventions for
+specifying relative paths.  However you resolve this locally, we'll
+refer to this as '$ABCL_ROOT/dist/abcl.jar' for the rest of these
+instructions.
+
+This compiles the Java source file "Main.java" into a JVM runtime or
+class file named "Main.class".
+
+To run the example (Main.class for example) from a Unix-like OS use:
+
+    cmd$ java  -cp $ABCL_ROOT/dist/abcl.jar:.  Main
+
+or in Windows use:
+
+    cmd$  java  -cp  $ABCL_ROOT/dist/abcl.jar;.  Main
+
+where "Main" is the initial class to run in your Java program.
+
+

Added: trunk/abcl/examples/java-interface/README
==============================================================================
--- (empty file)
+++ trunk/abcl/examples/java-interface/README	Sun May 23 02:06:06 2010
@@ -0,0 +1,29 @@
+ABCL Examples Building and Running Instructions
+===============================================
+
+To compile 
+
+    cmd$ javac  -cp ../../dist/abcl.jar  Main.java
+
+where the "../../../dist/abcl.jar" represents the path to your
+abcl.jar file, which is built via the Ant based build.  This path
+could be slightly different depending on how the system was
+constructed, and possibly due to operating system conventions for
+specifying relative paths.  However you resolve this locally, we'll
+refer to this as '$ABCL_ROOT/dist/abcl.jar' for the rest of these
+instructions.
+
+This compiles the Java source file "Main.java" into a JVM runtime or
+class file named "Main.class".
+
+To run the example (Main.class for example) from a Unix-like OS use:
+
+    cmd$ java  -cp $ABCL_ROOT/dist/abcl.jar:.  Main
+
+or in Windows use:
+
+    cmd$  java  -cp  $ABCL_ROOT/dist/abcl.jar;.  Main
+
+where "Main" is the initial class to run in your Java program.
+
+

Added: trunk/abcl/examples/java-to-lisp-1/README
==============================================================================
--- (empty file)
+++ trunk/abcl/examples/java-to-lisp-1/README	Sun May 23 02:06:06 2010
@@ -0,0 +1,29 @@
+ABCL Examples Building and Running Instructions
+===============================================
+
+To compile 
+
+    cmd$ javac  -cp ../../dist/abcl.jar  Main.java
+
+where the "../../../dist/abcl.jar" represents the path to your
+abcl.jar file, which is built via the Ant based build.  This path
+could be slightly different depending on how the system was
+constructed, and possibly due to operating system conventions for
+specifying relative paths.  However you resolve this locally, we'll
+refer to this as '$ABCL_ROOT/dist/abcl.jar' for the rest of these
+instructions.
+
+This compiles the Java source file "Main.java" into a JVM runtime or
+class file named "Main.class".
+
+To run the example (Main.class for example) from a Unix-like OS use:
+
+    cmd$ java  -cp $ABCL_ROOT/dist/abcl.jar:.  Main
+
+or in Windows use:
+
+    cmd$  java  -cp  $ABCL_ROOT/dist/abcl.jar;.  Main
+
+where "Main" is the initial class to run in your Java program.
+
+

Added: trunk/abcl/examples/java-to-lisp-2/README
==============================================================================
--- (empty file)
+++ trunk/abcl/examples/java-to-lisp-2/README	Sun May 23 02:06:06 2010
@@ -0,0 +1,29 @@
+ABCL Examples Building and Running Instructions
+===============================================
+
+To compile 
+
+    cmd$ javac  -cp ../../dist/abcl.jar  Main.java
+
+where the "../../../dist/abcl.jar" represents the path to your
+abcl.jar file, which is built via the Ant based build.  This path
+could be slightly different depending on how the system was
+constructed, and possibly due to operating system conventions for
+specifying relative paths.  However you resolve this locally, we'll
+refer to this as '$ABCL_ROOT/dist/abcl.jar' for the rest of these
+instructions.
+
+This compiles the Java source file "Main.java" into a JVM runtime or
+class file named "Main.class".
+
+To run the example (Main.class for example) from a Unix-like OS use:
+
+    cmd$ java  -cp $ABCL_ROOT/dist/abcl.jar:.  Main
+
+or in Windows use:
+
+    cmd$  java  -cp  $ABCL_ROOT/dist/abcl.jar;.  Main
+
+where "Main" is the initial class to run in your Java program.
+
+

Added: trunk/abcl/examples/jsr-223/README
==============================================================================
--- (empty file)
+++ trunk/abcl/examples/jsr-223/README	Sun May 23 02:06:06 2010
@@ -0,0 +1,28 @@
+ABCL Examples Building and Running Instructions
+===============================================
+
+To compile:
+
+	cmd$ javac  -cp ../../dist/abcl.jar  JSR223Example.java
+
+where the "../../dist/abcl.jar" represents the path to your
+abcl.jar file, which is built via the Ant based build.  This path
+could be slightly different depending on how the system was
+constructed, and possibly due to operating system conventions for
+specifying relative paths.  However you resolve this locally, we'll
+refer to this as '$ABCL_ROOT/dist/abcl.jar' for the rest of these
+instructions.
+
+This compiles the Java source file "Main.java" into a JVM runtime or
+class file named "Main.class".
+
+To run the example (Main.class for example) from a Unix-like OS use:
+
+	cmd$ java  -cp $ABCL_ROOT/dist/abcl.jar:.  JSR223Example
+
+or in Windows use:
+
+	cmd$  java  -cp  $ABCL_ROOT/dist/abcl.jar;.  JSR223Example
+
+where "Main" is the initial class to run in your Java program.
+

Added: trunk/abcl/examples/lisp-to-java/README
==============================================================================
--- (empty file)
+++ trunk/abcl/examples/lisp-to-java/README	Sun May 23 02:06:06 2010
@@ -0,0 +1,29 @@
+ABCL Examples Building and Running Instructions
+===============================================
+
+To compile 
+
+    cmd$ javac  -cp ../../dist/abcl.jar  Main.java
+
+where the "../../../dist/abcl.jar" represents the path to your
+abcl.jar file, which is built via the Ant based build.  This path
+could be slightly different depending on how the system was
+constructed, and possibly due to operating system conventions for
+specifying relative paths.  However you resolve this locally, we'll
+refer to this as '$ABCL_ROOT/dist/abcl.jar' for the rest of these
+instructions.
+
+This compiles the Java source file "Main.java" into a JVM runtime or
+class file named "Main.class".
+
+To run the example (Main.class for example) from a Unix-like OS use:
+
+    cmd$ java  -cp $ABCL_ROOT/dist/abcl.jar:.  Main
+
+or in Windows use:
+
+    cmd$  java  -cp  $ABCL_ROOT/dist/abcl.jar;.  Main
+
+where "Main" is the initial class to run in your Java program.
+
+




More information about the armedbear-cvs mailing list