We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3b8d3b commit c9de2b1Copy full SHA for c9de2b1
1 file changed
test.ey
@@ -1,14 +1,12 @@
1
-out "hello world!���!\n";
+out "hello world!\n";
2
out "this is your first eytion program!\n";
3
out "try it!\n";
4
var <string>str = "this is your first variable\n";
5
out str;
6
delete str; # and you can delete it!
7
-var <int>n1 = 1;
8
-var <int>n2 = n1+1;
9
-out n2;
+var <int>a = 1;
+var <int>b = a*9+3;
+var <deci>c = 3.4+2.1;
10
+out a + b;
11
out "\n";
-n1 = n1*n2 + 3;
12
-out n1;
13
-out "\n";
14
-out (1+n1)/2;
+out c;
0 commit comments