diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2024-05-18 07:23:11 -0700 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2024-06-08 13:59:25 -0700 |
| commit | 4fe42be07b7b57147f9cac0d17c2611f71f0758a (patch) | |
| tree | f1bef68c480a04db1dcff04925ce8b2e98f73119 /tests/20-structure.sml | |
| parent | 07c1a4a35923079d92867794b8ea621d44543ef1 (diff) | |
| download | sml-4fe42be07b7b57147f9cac0d17c2611f71f0758a.tar.zst | |
Add structures.
Diffstat (limited to 'tests/20-structure.sml')
| -rw-r--r-- | tests/20-structure.sml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/20-structure.sml b/tests/20-structure.sml new file mode 100644 index 0000000..dfc7b9b --- /dev/null +++ b/tests/20-structure.sml @@ -0,0 +1,5 @@ +structure S = struct + val fourtyTwo = 42 +end + +val _ = __builtin "exit" S.fourtyTwo |
