diff options
author | Camil Staps | 2016-08-28 15:53:04 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-28 15:53:04 +0200 |
commit | 1237de832250ef81076ff9647bd68ad0eded32ea (patch) | |
tree | f236268e580ea26ab0941c29a8234d11d2b8ae8a /examples | |
parent | fuspelc -> fuspel (diff) |
Adds an import construct; resolves #1
Diffstat (limited to 'examples')
-rw-r--r-- | examples/list-test.fusp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/list-test.fusp b/examples/list-test.fusp index e71e07d..d90a252 100644 --- a/examples/list-test.fusp +++ b/examples/list-test.fusp @@ -1,2 +1,4 @@ +import list; + main = flatten [[1:[2:[3:[]]]]:[[4:[5:[6:[]]]]:[]]]; main = append [1:[2:[3:[]]]] [4:[5:[6:[]]]]; |