Skip to content

Commit 08617ae

Browse files
committed
TEST: WASM_X86: Add test for print neg int
1 parent da4f8fc commit 08617ae

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

integration_tests/print_03.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
def Main0():
22
x: i32
3-
x = (2+3)*5
3+
x = (2+3)* (-5)
4+
y: i32 = 100
5+
z: i32 = 2147483647
6+
w: i32 = -2147483648
47
print(x)
8+
print(y)
9+
print(z)
10+
print(w)
511
print("Hi")
612
print("Hello")
713
print((5-2) * 7)

0 commit comments

Comments
 (0)