summaryrefslogtreecommitdiff
path: root/Values/README.md
diff options
context:
space:
mode:
authorhenesy <henesy.dev@gmail.com>2019-02-26 10:39:13 -0600
committerhenesy <henesy.dev@gmail.com>2019-02-26 10:39:13 -0600
commit9611c053041139ed398a9153877c42968caf4dfe (patch)
tree7ca1ec1289d8da6598a1a85d52feba1c75bf96c0 /Values/README.md
parentdbf76bdbadd4ef4cd3de22b613d4c7f8492bb840 (diff)
add Loops
Diffstat (limited to 'Values/README.md')
-rw-r--r--Values/README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/Values/README.md b/Values/README.md
index 79e7841..b038b07 100644
--- a/Values/README.md
+++ b/Values/README.md
@@ -9,6 +9,8 @@ Limbo has a variety of primitive types available and possesses the ability to co
sys: Sys;
print, sprint: import sys;
+The name `sys` is declared as type `Sys`. If you are defining a type for a name, the format is: `varname: typename`.
+
The `import` statement allows you to define a local name which is tied to a name in another space. That is, the `print` name becomes equivalent to `sys->print`.
### values.b:16,19