diff options
Diffstat (limited to 'src/Test')
-rw-r--r-- | src/Test/Builtins.hs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Test/Builtins.hs b/src/Test/Builtins.hs new file mode 100644 index 0000000..9deb2df --- /dev/null +++ b/src/Test/Builtins.hs @@ -0,0 +1,13 @@ +module Test.Builtins ( + builtins, +) where + +import Test + +builtins :: [ ( VarName, SomeVarValue ) ] +builtins = + [ ( VarName "wait", SomeVarValue builtinWait ) + ] + +builtinWait :: TestBlock +builtinWait = TestBlock [ Wait ] |