Skip to content

Commit d33bc32

Browse files
committed
feat: Add reproduction files for function definition, module import, input, and print statements.
1 parent 40a4ec7 commit d33bc32

5 files changed

Lines changed: 14 additions & 0 deletions

File tree

repro_def.prox

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
use std.io;
2+
print("Loaded");
3+
print(std.io.input_raw);
4+
print("Access OK");

repro_func.prox

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
func foo() {
2+
print("Inside foo");
3+
}
4+
print("Calling foo");
5+
foo();
6+
print("Done");

repro_import.prox

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
use std.io;
2+
input("test");

repro_input.prox

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
input("Waiting for input: ");

repro_print.prox

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print("Just printing");

0 commit comments

Comments
 (0)