We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5af053a commit e5e47f5Copy full SHA for e5e47f5
O.java
@@ -8,7 +8,7 @@
8
import java.util.concurrent.CopyOnWriteArrayList;
9
10
public class O {
11
- public static final String VERSION = "1"; // Version of O
+ public static final String VERSION = "1.0"; // Version of O
12
public static O instance; // static instance used for other classes
13
14
public static void main(String[] a) throws IOException {
@@ -47,6 +47,7 @@ public void runFile(File f) throws IOException {
47
boolean repl = false;
48
49
public void repl() {
50
+ System.out.println("O REPL Version " + VERSION);
51
repl = true;
52
scanner = new Scanner(System.in);
53
while (true) {
0 commit comments