tags: program meta todo language
Meta programming language. One programming language, that could be translated to all languages.
you write in one language, and with interpretor you can later translate that program to any language you want, or use.
message hello
would be translated to:
c++:
ccout << "hello" << endl;
vb:
MessageBox.Show("hello")
etc.