DeadIFsh
Jump to navigation
Jump to search
- This is still a work in progress. It may be changed in the future.
DeadIFsh is an esolang by User:ChuckEsoteric08 derived from Deadfish.
Commands
In addition to Deadfish commands, DeadIFsh has following commands:
Command | Operation |
---|---|
[ | start of while-not-0 loop |
] | end of while-not-0 loop |
( | start of while-0 loop |
) | end of while-0 loop |
{ | start of if-bigger-than-0 statement |
} | end of if-bigger-than-0 statement |
< | start of if-0 statement |
> | end of if-0 statement |
Examples
Countdown
Counts down from ten to inclusive one:
iiiiiiiiii[od]
Infinite Byte Range Printer Using Nested Loops
Perpetually prints the integers from zero through inclusive 255:
(oi[oi])
Infinite Byte Range Printer Using Conditional
An alternative approach to the perpetual printing which outputs the integer numbers in the range [0, 255]:
oi[oi<oi>]
Interpreter
- Common Lisp implementation of the DeadIFsh programming language.