None,

From Esolang
Jump to navigation Jump to search

None, is a esolang created by User:Ractangle and is an actual esolang with a syntax instead of just printing a word and that's it. It's also inspierd by Nope.

Commands

Some, - Starts the program
None, - End the program
Maybe? - A condition command
Possibly? - The action of the Maybe? command
Sure - Ends the current Maybe? command
So? - While loop
<condition> Oh - Ends the While loop
Yes <string> - Prints the string
Uhh <math question> - Does a math operation
Yeah <variable> - Prints a variable
Say. <varname> <varval> - Creates a variable
No - Gets user input

Examples

Hello, world!

Some,
Yes Hello, world!
None,

Truth-machine

Some,
Say. i No
Maybe? i==0
Possibly? Yes 0
Sure
Maybe? i==1
So?
Possibly? Yes 1
i==0 Oh
Sure
None,

Deadfish implementation

Some,
So?
Say. a 0
Say. n No
Maybe? n==i
Possibly? Uhh n + 1
Sure
Maybe? n==d
Possibly? Uhh n - 1
Sure
Maybe? n==s
Possibly? Uhh n * n
Sure
Maybe? n==o
Possibly? Yeah a
Sure
Oh
None,