Skip to content

Commit e5e47f5

Browse files
committed
Prepare for version 1.0
1 parent 5af053a commit e5e47f5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

O.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import java.util.concurrent.CopyOnWriteArrayList;
99

1010
public class O {
11-
public static final String VERSION = "1"; // Version of O
11+
public static final String VERSION = "1.0"; // Version of O
1212
public static O instance; // static instance used for other classes
1313

1414
public static void main(String[] a) throws IOException {
@@ -47,6 +47,7 @@ public void runFile(File f) throws IOException {
4747
boolean repl = false;
4848

4949
public void repl() {
50+
System.out.println("O REPL Version " + VERSION);
5051
repl = true;
5152
scanner = new Scanner(System.in);
5253
while (true) {

0 commit comments

Comments
 (0)