Hack And Build Lab 𖣔
333 subscribers
269 photos
33 videos
120 files
221 links
Download Telegram
all changed
I named my new language Saynaa
👍1
The reason is
that we share things together and develop an interpreter and a compiler language
hello.s
601 B
Hello World in assembly language
copy all to termux $HOME directory
> give permission
       $ chmod +x arm-as arm-ld
> convert assembly to object
       $ ./arm-as -o hello.o hello.s
> convert object to executable binary
       $ ./arm-ld -o hello hello.o
> then execute the program
       $ ./hello



then output will become "Hello World" based to arm 32bit
Can worked you
name saynaa is a name mount
In English it is said sinai while in Arabic it is pronounced saynaa


https://en.m.wikipedia.org/wiki/Mount_Sinai
post increment and pre increment added
ab = 10;
print(ab++); //output: 10
print(++ab); //output: 12
terminal + browser
🔨 1 new commit to saynaa:master:

96d5e45: added readline autocomplete keyword and Unary post increment by Mahdiware
my parser is very fast
Hack And Build Lab 𖣔
my parser is very fast
0.0499 MilliSecond
Friends, the way it is going now is a good, so I want someone to join me to add a class to this language in a modern way that works with existing languages.
Our mission is:
1: function return value
2: We will use the function if the return value is an expression
3: about class (heritance and ...)
4: for loop (soon adding)
5: load shared object (.so) like (lua, python, java)