Browse Source

2018->2019

Daniel Le Berre 6 năm trước cách đây
mục cha
commit
520f22533c
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/migl/lisp/REPL.java

+ 1 - 1
src/migl/lisp/REPL.java

@@ -23,7 +23,7 @@ public class REPL {
 
         Lisp lisp = LispFactory.makeIntepreter();
         try (Scanner scanner = new Scanner(System.in, "UTF8")) {
-            System.out.println("My super own Lisp/Scheme interpreter 2018");
+            System.out.println("My super own Lisp/Scheme interpreter 2019");
             System.out.println("Enter a valid Lisp expression followed by Enter. type 'quit' to exit.");
             System.out.print("> ");
             while (scanner.hasNext()) {