Page 1 of 1

I am making my own

Posted: Wed Nov 12, 2003 12:00 am
by EIforall
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.

RE:I am making my own

Posted: Wed Nov 12, 2003 12:00 am
by df
thats nice.
come back to me when you have a fully functional compiler and debugger.