This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__ __ _ ___ _ _ | |
\ \ / /_ _| |__ / __| |_ __ ___ _(_)_ _ __ _ | |
\ V / _` | / / \__ \ ' \/ _` \ V / | ' \/ _` | | |
|_|\__,_|_\_\ |___/_||_\__,_|\_/|_|_||_\__, | | |
|___/ YAK SHAVING LTD | |
═══════════════ | |
Company Number: 09522289 | |
73 Douglas Buildings | |
Marshalsea Road |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Sample code | |
#Hello world | |
"Hello world!" print | |
#Factorial | |
factorial := method(n, if(n == 1, 1, n * factorial(n - 1))) | |
99 bottles of beer |