Skip to content

Commit 9417725

Browse files
authored
Update README.md
1 parent f047178 commit 9417725

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,20 @@
11
# TinyX
22
A kind of very small programming language built on top of Java.
3+
4+
Below is a test example:
5+
```txt
6+
a = 100
7+
bc = 150
8+
show a
9+
show bc
10+
b=a
11+
a=0
12+
show b
13+
```
14+
15+
This will produce below o/p
16+
```bash
17+
100
18+
150
19+
100
20+
```

0 commit comments

Comments
 (0)