-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.baba
53 lines (36 loc) · 786 Bytes
/
code.baba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
BLOCK-COMMENT IS
This is a block comment
Test
Test
AND END BLOCK-COMMENT
COMMENT Simple prints
SAY "Hello, World!"
COMMENT One-line statements
SAY "Single" AND SAY "Line" AND COMMENT Any comments afterwards need a new line
COMMENT String concatenation
SAY "Foo " PLUS "Bar"
COMMENT Variables
YOU IS "YOU"
BABA IS YOU
SAY "BABA IS " PLUS BABA
THEREALANSWER IS 21
SAY "9 + 10 = " PLUS THEREALANSWER
NICE IS "Nice "
NICEONE IS NICE PLUS "one..."
SAY NICEONE
COMMENT Maths
QUICK IS 2 PLUS 2
MATHS IS QUICK MINUS 1
SAY "2 PLUS 2 IS " PLUS QUICK
SAY "MINUS 1 DAS " PLUS MATHS
COMMENT Input
SAY "Input something and I'll repeat it!"
REPEAT IS INPUT
SAY REPEAT
BLOCK-COMMENT IS
TODO
* Add booleans
* Add if/else statements
* Add for statements
* Find bugs
AND END BLOCK-COMMENT