Skip to content

Commit 0331d52

Browse files
committed
test
1 parent 537bc87 commit 0331d52

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/main.gs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
costumes "blank.svg";
22

33
%include inflator/assert
4+
%include inflator/math
5+
%include inflator/cmath
46

57
onflag {main;}
68
proc main {
9+
Complex i = Complex(0, 1);
10+
Complex i_tetrated = c_pow(i, i);
711

12+
log C_STR(i_tetrated);
13+
assert_eq i_tetrated.i, 0;
814
}

0 commit comments

Comments
 (0)