compiled in arm
you can test now in termux
copy to $HOME directory and write
chmod +x ./a.out
./a.out
will print "Hello World"
you can test now in termux
copy to $HOME directory and write
chmod +x ./a.out
./a.out
will print "Hello World"
I named my new language Saynaa
๐1
The reason is
that we share things together and develop an interpreter and a compiler language
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
> 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
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
In English it is said sinai while in Arabic it is pronounced saynaa
https://en.m.wikipedia.org/wiki/Mount_Sinai
Wikipedia
Mount Sinai
mountain in the Sinai Peninsula of Egypt
post increment and pre increment added
ab = 10;
print(ab++); //output: 10
print(++ab); //output: 12
ab = 10;
print(ab++); //output: 10
print(++ab); //output: 12