I am making my own language. I incorporated some things I like into it.
!:
easy inline assembly
in my language Just :
asm [
mov ax,bx
int 21h
]
I am also a big fond of operator over loading:
in my language Just :
BadGuy TryToKill GoodGuy
Is just like TryToKill ( BadGuy , GoodGuy )
and every thing in my language is overloaded even
A + B -> C ( -> is a store operator )
is translated to
load ( A )
“+” ( B ) // “+” is a function name
“->” C // “->” is a function name
all if “+” and “->” are written in inline assembly and can be written any time.
I am making my own
RE:I am making my own
thats nice.
come back to me when you have a fully functional compiler and debugger.
come back to me when you have a fully functional compiler and debugger.
-- Stu --