summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorseh <henesy.dev@gmail.com>2019-02-25 13:49:59 -0600
committerseh <henesy.dev@gmail.com>2019-02-25 13:49:59 -0600
commitb91b86a9b63f3a767c8cbf9c46a794fb00a86883 (patch)
tree905fe9520cdaa9fda6aef0fb1af4157a0a05d16c /README.md
parenta441e96695c14e570905835af9157b7b3d17e82e (diff)
add hello world
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/README.md b/README.md
index 852daa8..cc3ac6c 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,22 @@ Programming examples in the spirit of [gobyexample](https://github.com/mmcgrana/
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)