Skip to content

Commit c9de2b1

Browse files
committed
[update]
1 parent a3b8d3b commit c9de2b1

1 file changed

Lines changed: 6 additions & 8 deletions

File tree

test.ey

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
out "hello world!���!\n";
1+
out "hello world!\n";
22
out "this is your first eytion program!\n";
33
out "try it!\n";
44
var <string>str = "this is your first variable\n";
55
out str;
66
delete str; # and you can delete it!
7-
var <int>n1 = 1;
8-
var <int>n2 = n1+1;
9-
out n2;
7+
var <int>a = 1;
8+
var <int>b = a*9+3;
9+
var <deci>c = 3.4+2.1;
10+
out a + b;
1011
out "\n";
11-
n1 = n1*n2 + 3;
12-
out n1;
13-
out "\n";
14-
out (1+n1)/2;
12+
out c;

0 commit comments

Comments
 (0)