XPROZ Programming Language
Keywords:
- start - used to open a file
- link - redirects user to a website
- cmd - executes commands from the OS terminal
- data - variable keyword
- print - displays text to console
- ping - pings a website
Code example:
print "Hello!";
link "http://roblox.com";
cmd "sleep 4";
data x = "ping http://roblox.com";
cmd x;
start "notepad.exe";
| |