___
/. _\
.--.|/_/__
''.--o/___ \
/.'o|_o '.|
|/ |_| '
' |_|
|_|
__.|_|.__
/ |_| ``""-..__
. |_| (¯)__|¯|___'-._
| ´"'"`|¯(_-< / -_) \
\ |_/__/_\___| |
'-.__.--._ .-'
`--...--'`
TODO
import ("console");
console.println("hello world!");
# Prints "hello world!"
import ("console");
function fibonacci(n) {
if (n < 2){
return 1;
} else {
return fibonacci(n-2) + fibonacci(n-1);
}
}
console.println(fibonacci(7));
# Prints 21
- Language study
- Lisperator.net
- λanguage (What Isle is based on)