SMOKER
Smoker is like linux, windows and mac terminal combined.
Keywords:
- STRING | defines a string
- PRINT | prints text
- LIN | Executes command if on Linux
- WIN | Executes command if on Windows
- MAC | Executes command if on Mac
- GLOBAL | Executes command that works for all OS
- LLINK | Redirects user to link if on Linux
- WLINK | Redirects user to link if on Windows
- MLINK | Redirects user to link if on Mac
- GLINK | Redirects user to link if on any OS
Codes
Print hello
PRINT "Hello";
LIN
LIN "echo I am on Linux";
WIN
WIN "echo I am on Windows!!";
MAC
MAC "echo I am on Mac";
MLINK
MLINK "http://youtube.com";
LLINK
LLINK "http://roblox.com";
WLINK
WLINK "http://minecraft.net";
GLOBAL
GLOBAL "echo I am on computer"; << No matter what machine you are on this command will execute
GLINK
GLINK "http://code.org"; << No matter what machine you are on this will redirect.
| |