diff options
| author | Konstantin Kirik (snegovick) <snegovick@uprojects.org> | 2025-12-12 03:51:07 +0300 |
|---|---|---|
| committer | Konstantin Kirik (snegovick) <snegovick@uprojects.org> | 2025-12-12 03:51:07 +0300 |
| commit | a40ef1434889babbd88c9d0c5913c70e96ac2774 (patch) | |
| tree | a71e4f3cb1d6056554e3958468ddfcee0300e08e /sh9util.m | |
| parent | cc280d7e5d07fd61e45825b3850c8baaa4147639 (diff) | |
Add simple parser for future shell-like lang
Diffstat (limited to 'sh9util.m')
| -rw-r--r-- | sh9util.m | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sh9util.m b/sh9util.m new file mode 100644 index 0000000..aa44c3f --- /dev/null +++ b/sh9util.m @@ -0,0 +1,8 @@ +Sh9Util: module +{ +PATH: con "sh9util.dis"; +DESCR: con "Utility functions for sh9"; + +reverse_list: fn[T](toks: list of T): list of T; +to_array: fn[T](toks: list of T): array of T; +}; |
