2018-09-14 19:17:09 -07:00
|
|
|
#!/usr/bin/env nomsu -V4.8.8.6
|
2018-05-15 18:55:55 -07:00
|
|
|
#
|
2018-01-11 18:51:21 -08:00
|
|
|
This file contains a set of definitions that bring some familiar language features
|
2018-07-30 19:11:12 -07:00
|
|
|
from other languages into nomsu (e.g. "||" and "continue")
|
2018-01-11 18:51:21 -08:00
|
|
|
|
2018-07-17 23:37:20 -07:00
|
|
|
parse [%a === %b] as ((%a 's id) is (%b 's id))
|
|
|
|
parse [%a !== %b] as ((%a 's id) is not (%b 's id))
|
|
|
|
parse [function %names %body, def %names %body] as (action %names %body)
|
2018-07-30 19:11:12 -07:00
|
|
|
parse [switch %branch_value %body] as (if %branch_value is %body)
|
2018-07-17 23:37:20 -07:00
|
|
|
parse [None, Null] as (nil)
|
|
|
|
parse [True, true] as (yes)
|
|
|
|
parse [False, false] as (no)
|
|
|
|
parse [pass] as (do nothing)
|
|
|
|
parse [%a || %b] as (%a or %b)
|
|
|
|
parse [%a && %b] as (%a and %b)
|
|
|
|
parse [continue] as (do next)
|
|
|
|
parse [break] as (stop)
|
2018-07-30 19:39:32 -07:00
|
|
|
parse [let %thing = %value in %action] as (with local {%thing:%value})
|
2018-07-30 19:11:12 -07:00
|
|
|
parse [print %, println %] as (say %)
|
2018-07-17 23:37:20 -07:00
|
|
|
parse [error!, panic!, fail!, abort!] as (barf!)
|
|
|
|
parse [error %, panic %, fail %, abort %] as (barf %)
|
2018-07-30 19:11:12 -07:00
|
|
|
parse [assert %condition] as (assume %condition)
|
2018-07-17 23:37:20 -07:00
|
|
|
parse [assert %condition %message] as (assume %condition or barf %message)
|
|
|
|
parse [%cond ? %if_true %if_false] as (%if_true if %cond else %if_false)
|
2018-07-30 19:11:12 -07:00
|
|
|
parse [lambda %args %body] as (%args -> %body)
|
|
|
|
parse [function %name %args %body] as (%name = (%args -> %body))
|