add new print command
authorbdemsky <bdemsky>
Wed, 18 Feb 2009 22:39:20 +0000 (22:39 +0000)
committerbdemsky <bdemsky>
Wed, 18 Feb 2009 22:39:20 +0000 (22:39 +0000)
Robust/src/ClassLibrary/System.java

index 7dadfe2e8d880c23f03a6c586ef302c7d10b3857..dc6c9a9bd2911d73b0e94304885f40b5555a3508 100644 (file)
@@ -8,6 +8,11 @@ public class System {
 
   public static native void printString(String s);
 
+  public static void println(String s) {
+    System.printString(s);
+    System.printString("\n");
+  }
+
   public static void error() {
     System.printString("Error (Use Breakpoint on ___System______error method for more information!)\n");
   }