!!!mby
Jump to navigation
Jump to search
!!!mby is a esolang made by User:Esdraslov that you define the keywords with builtin keywords
builtin keywords
These keywords are useless for a while
Keyword | Meaning |
---|---|
*...*
|
Anything between two * 's is an argument
|
KYWD
|
Defines a new keyword |
.
|
Succed the value between two . 's, basically x + 1
|
p
|
Ends the keyword |
These aren't keywords, but they are part of it.
r(...) Returns anything inside it xy Do y x's times
x=y Defines/modifies a variable called x and sets its value to y
Made keywords
This is mathematical plus keyword:
KYWD +*x**y* r(y.x.) p
This is mathematical multiplication (requires plus to be already implemented):
KYWD times*x**y* r(s=0,y(s=+s,x+)) p
Examples
Multiplies 1000 by 10
KYWD +*x**y* r(y.x.) p KYWD times*x**y* r(s=0,y(s=+s,x+)) p re=times 1000,10 times