nomsu/examples/tutorial.nom

283 lines
7.4 KiB
Plaintext
Raw Normal View History

# One liner comments start with # and go till end of line
#.. Multi-line comments start with #.. and
continue until dedent
2017-09-12 20:00:19 -07:00
# Import files like so:
require "lib/core.nom"
2017-09-12 20:00:19 -07:00
# Numbers:
2017-09-12 20:00:19 -07:00
23
4.5
#.. Since this language cross-compiles to lua, integers and floating point numbers are
both represented using the same primitive.
2017-09-12 20:00:19 -07:00
# Strings:
2017-09-12 20:00:19 -07:00
"asdf"
2017-09-14 04:23:18 -07:00
".."|This is a multi-line string
2017-09-12 20:00:19 -07:00
|that starts with ".." and includes each indented line that starts with a "|"
|until the indentation ends
# Lists:
2017-09-12 20:00:19 -07:00
[1,2,3]
[..]
"like multi-line strings, lists have an indented form", "that can use commas too"
"or just newlines to separate items"
5
6,7,8
2017-09-18 22:41:50 -07:00
# Dictionaries (AKA hash maps):
2017-09-14 04:23:18 -07:00
dict [["x", 99], ["y", 101]]
dict [..]
["z", 222]
[383, "howdy"]
# Function calls:
2017-09-12 20:00:19 -07:00
say "Hello world!"
2017-09-18 22:41:50 -07:00
# Variables use the % sign:
%str =: "Hello again"
say %str
# There are +=:, -=:, *=:, /=:, ^=:, and=:, or=:, and mod=: operators for updating variables
%x =: 1
%x +=: 100
say %x
# Conditionals look like this:
if (1 < 10):
say "1 is indeed < 10"
if (1 > 10):
say "this won't print"
..else:
say "this will print"
2017-09-20 04:43:50 -07:00
# For longer conditionals, a "when" branch is the best option
when:
? 1 > 4:
say "this won't print"
? 1 > 3:
say "this won't print"
? 1 > 2:
say "this won't print"
?:
say "this will print"
# When "when" is given an argument, it works like a switch statement
when 3:
== 1:
say "this won't print"
== 2:
say "this won't print"
== 3:
say "this will print"
==:
say "this won't print"
2017-09-18 22:41:50 -07:00
# Loops look like this:
for %x in [1,2,3]:
say ".."|for loop over list #\%x\
# If you want to iterate over a numeric range, you can use some built in functions like this:
for %x in (1 through 3):
say ".."|for loop over number range #\%x\
# While loops:
%x =: 1
repeat while (%x <= 3):
say ".."|repeat while loop #\%x\
%x +=: 1
%x =: 1
repeat until (%x > 3):
say ".."|repeat until loop #\%x\
%x +=: 1
# Infinite loop:
%x =: 1
repeat:
say ".."|repeat loop #\%x\
%x +=: 1
if (%x > 3):
break
# GOTOs:
do:
%x =: 1
-> %again
say ".."|go to loop #\%x\
%x +=: 1
if (%x <= 3):
go to %again
say "finished going to"
# Function definition:
rule [say both %first and also %second] =:
2017-09-12 20:00:19 -07:00
say %first
# Function arguments are accessed just like variables
2017-09-12 20:00:19 -07:00
say %second
2017-09-18 22:41:50 -07:00
# The last line of a function is the return value
rule [add %x and %y] =:
2017-09-18 22:41:50 -07:00
%result =: %x + %y
%result
# Functions can use "return" to return a value early
rule [first fibonacci above %n] =:
2017-09-18 22:41:50 -07:00
%f1 =: 0
%f2 =: 1
repeat:
%tmp =: %f1 + %f2
%f1 =: %f2
%f2 =: %tmp
if (%f2 > %n):
return: %f2
say (first fibonacci above 10)
2017-09-14 04:36:32 -07:00
2017-09-14 05:44:55 -07:00
# Functions can have aliases, which may or may not have the arguments in different order
rule [..]
2017-09-18 22:41:50 -07:00
I hate %worse-things more than %better-things
I think %worse-things are worse than %better-things
I like %better-things more than %worse-things
..=:
2017-09-14 05:44:55 -07:00
say ".."|\%better-things capitalized\ rule and \%worse-things\ drool!
I like "dogs" more than "cats"
I think "chihuahuas" are worse than "corgis"
#.. Function calls can have parts of the function's name spread throughout.
Everything that's not a literal value is treated as part of the function's name
2017-09-12 20:00:19 -07:00
say both "Hello" and also "again!"
# Functions can even have their name at the end:
rule [%what-she-said is what she said] =:
2017-09-12 20:00:19 -07:00
say %what-she-said
say "-- she said"
2017-09-18 22:41:50 -07:00
2017-09-12 20:00:19 -07:00
"Howdy pardner" is what she said
#.. The language only reserves []{}().,:;% as special characters, so functions and variables
can have really funky names!
rule [>> %foo-bar$$$^ --> %@@& _~-^-~_~-^ %1 !] =:
say %foo-bar$$$^
2017-09-12 20:00:19 -07:00
say %@@&
say %1
2017-09-18 22:41:50 -07:00
2017-09-12 20:00:19 -07:00
>> "wow" --> "so flexible!" _~-^-~_~-^ "even numbers can be variables!" !
# Math and logic operations are just treated the same as function calls in the syntax
2017-09-12 20:00:19 -07:00
say (2 + 3)
# So it's easy to define your own operators
rule [%a ++ %b] =:
2017-09-18 22:41:50 -07:00
2 * (%a + %b)
2017-09-12 20:00:19 -07:00
say (2 ++ 3)
#.. Code blocks start with ":" and either continue until the end of the line
or are indented blocks
2017-09-12 20:00:19 -07:00
# One liner:
2017-09-12 20:00:19 -07:00
: say "hi"
# Block version:
2017-09-12 20:00:19 -07:00
:
say "one"
say "two"
#.. So the function definitions above are actually just passing a regular string, like
2017-09-12 20:00:19 -07:00
"say both %first and also %second", and a code block to a function called "rule % %"
that takes two arguments.
2017-09-12 20:00:19 -07:00
# Line continuations work by starting the next line with ".."
2017-09-12 20:00:19 -07:00
say both "Bruce"
..and also "Lee"
# This can be combined with the block forms of literals:
2017-09-12 20:00:19 -07:00
say both ".."
|Four score and seven years ago our fathers brought forth, upon this continent,
|a new nation, conceived in liberty, and dedicated to the proposition that
|"all men are created equal"
..and also "-- Abraham Lincoln"
2017-09-12 20:00:19 -07:00
rule [my favorite number] =: 21 + 2
2017-09-14 02:41:10 -07:00
# Subexpressions are wrapped in parentheses:
2017-09-14 02:41:10 -07:00
say (my favorite number)
# There's a multi-line indented block form for subexpressions too:
2017-09-14 02:41:10 -07:00
say (..)
my favorite
..number
2017-09-14 02:41:10 -07:00
# Block strings can interpolate values by enclosing an expression in a pair of \s
say ".."|My favorite number is \my favorite number\!
say ".."
|My favorite number is still \(..)
2017-09-12 20:00:19 -07:00
my favorite
..number
2017-09-14 02:41:10 -07:00
..\, but this time it uses an indented subexpression!
2017-09-12 20:00:19 -07:00
rule [sing %starting-bottles bottles of beer] =:
2017-09-18 22:41:50 -07:00
for %n in (%starting-bottles down through 0):
2017-09-14 02:41:10 -07:00
say ".."
|\%n if (%n > 0) else "No more"\ \"bottle" if (%n == 1) else "bottles"\ of beer on the wall.
|\"" if (%n == 0) else " Take one down, pass it around..."\
2017-09-12 20:00:19 -07:00
sing 9 bottles of beer
#.. Note that because math and logic operations are just macros, they require a lot
of parentheses to disambiguate. There's no PEMDAS.
2017-09-12 20:00:19 -07:00
say (5 + (4 * (- (1 + (6 + 2)))))
# For convenience, +,*,"and", and "or" have been hand defined to work with up to 4 operands:
2017-09-12 20:00:19 -07:00
1 + 2 + 3 + 4
say "Done with math."
2017-09-12 20:00:19 -07:00
1 * 2 * 3 * 4
1 and 2 and 3 and 4
1 or 2 or 3 or 4
# Longer lists can use "sum of %", "product of %", "all of %", and "any of %", respectively, or lots of parentheses.
2017-09-12 20:00:19 -07:00
sum of [1,2,3,4,5,6,7]
product of [1,2,3,4,5,6,7]
all of [1,1,1,1,0,1,1]
any of [0,0,0,0,1,0,0]
# And 3-operand chained inequality comparisons have been defined:
2017-09-12 20:00:19 -07:00
1 < 2 <= 3
say "Done with math."
2017-09-12 20:00:19 -07:00
# Macros:
# The "lua block %" and "lua expr %" macros can be used to write raw lua code:
rule [say the time] =:
2017-09-12 20:00:19 -07:00
lua block ".."
|io.write("The OS time is: ")
2017-09-14 02:41:10 -07:00
|io.write(tostring(os.time()).."\\n")
2017-09-12 22:25:08 -07:00
say the time
2017-09-14 02:41:10 -07:00
say ".."|Math expression result is: \lua expr "(1 + 2*3 + 3*4)^2"\
#.. In the lua environment, "vars" can be used to get local variables/function args, and
"compiler" can be used to access the compiler, function defs, and other things
rule [square root of %n] =:
2017-09-18 22:41:50 -07:00
lua expr "math.sqrt(vars.n)"
2017-09-14 02:41:10 -07:00
say ".."|The square root of 2 is \square root of 2\
2017-09-12 20:00:19 -07:00
# Macros can be defined as functions that take unprocessed syntax trees and return lua code
# "macro block %" is for defining macros that produce blocks of code, not values
macro block [unless %condition %body] =: ".."
|if not (\%condition as lua\) then
| \(lua expr "vars.body.value") as lua\
2017-09-18 22:41:50 -07:00
|end
2017-09-12 20:00:19 -07:00
unless (1 > 10):
say "Macros work!"
say "It looks like a keyword, but there's no magic here!"
# and "macro %" is for defining macros that produce an expression
macro [%value as a boolean] =: ".."
|(not not (\%value as lua\))
macro [yep] =: "true"
2017-09-12 20:00:19 -07:00