compiler
Unnamed repository; edit this file 'description' to name the repository.
git clone
https://git.deepztream.com/compiler
Log
|
Files
|
Refs
example.2 (71B)
1
_start() {
2
decl a,b,c;
3
a = 5;
4
b = 30;
5
c = a + b * 2;
6
exit;
7
}