have a server that like does stuff now

This commit is contained in:
2025-10-11 02:07:20 -06:00
parent fa16da8178
commit 6c45f30919
8 changed files with 107 additions and 24 deletions
+3 -1
View File
@@ -22,7 +22,9 @@
-type expr() :: sexp() | ltr() | op() | snowflake() | pattern() | val().
-spec expr(string()) -> {ok, expr(), Rest :: string()} | {error, string()}.
-spec expr(string()) -> Result
when Result :: {ok, Expression :: expr(), Rest :: string()}
| {error, string()}.
expr(Str0) ->
{ok, skip, Str1} = whitespace(Str0),