update: testing and result finding quest

This commit is contained in:
Mann Patel
2025-12-17 21:10:51 -07:00
parent 4c7002c263
commit 27bc69e837
11 changed files with 249 additions and 7 deletions

10
tests/test8.java Normal file
View File

@@ -0,0 +1,10 @@
public class test8 {
public static void main(String[] args) {
int x = 5; // Line 3
int y = x + 1; // Line 4
x = 10; // Line 5
int z = x * 2; // Line 6
System.out.println(y); // Line 7
System.out.println(z); // Line 8
}
}