blob: cc3ac6cbab94dd217729d28f4e18cde6128169d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Limbo by Example
Programming examples in the spirit of [gobyexample](https://github.com/mmcgrana/gobyexample), but targeted to the Limbo programming language.
These exercises are tested on the [purgatorio](http://code.9front.org/hg/purgatorio/) fork of the Inferno operating system.
The `;` rune in examples indicates a command to be run from the Inferno sh(1) shell.
## Building
If a given example provides a mkfile:
; mk
Otherwise, there will only be one file, a Limbo source file which can be built with:
; limbo file.b
You could then run said file with:
; file
## Index
[Hello World](./HelloWorld)
|