I am making my own

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
EIforall

I am making my own

Post 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.
User avatar
df
Member
Member
Posts: 1076
Joined: Fri Oct 22, 2004 11:00 pm
Contact:

RE:I am making my own

Post by df »

thats nice.
come back to me when you have a fully functional compiler and debugger.
-- Stu --
Post Reply