From a40ef1434889babbd88c9d0c5913c70e96ac2774 Mon Sep 17 00:00:00 2001 From: "Konstantin Kirik (snegovick)" Date: Fri, 12 Dec 2025 03:51:07 +0300 Subject: Add simple parser for future shell-like lang --- sh9util.m | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 sh9util.m (limited to 'sh9util.m') 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; +}; -- cgit v1.2.3