aboutsummaryrefslogtreecommitdiff
path: root/examples/how_do_i.nom
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-07-23 14:53:12 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2018-07-23 14:54:05 -0700
commit6e5d551071cdf0e03cca7f8c9ca5e54244e2b150 (patch)
treed988dbe5a4fdbb06e62f4908dd6ccfc85b32d3d9 /examples/how_do_i.nom
parent470a6fe7f987f7c5e5c1fa7b6b31956479ababed (diff)
Run 'use "core"' by default before running anything else, unless --no-core command line flag is used.
Diffstat (limited to 'examples/how_do_i.nom')
-rw-r--r--examples/how_do_i.nom4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/how_do_i.nom b/examples/how_do_i.nom
index 03a910a..bb5df5a 100644
--- a/examples/how_do_i.nom
+++ b/examples/how_do_i.nom
@@ -7,10 +7,10 @@
(including any deeper-level indented text)
The comment ends when the indentation ends
# How do I import a file?
-use "core/control_flow.nom"
+use "lib/os.nom"
# How do I import all the files in a directory?
-use "core"
+use "lib"
# How do I print stuff?
say "Hello world!"