1
0
Fork 0
forked from fun/fun

Added HTTP server class to stdlib and an example server written in 100% pure Fun. (0.37.28)

This commit is contained in:
Johannes Findeisen 2025-12-28 21:21:34 +01:00
commit 10b75596cd
6 changed files with 142 additions and 2 deletions

View file

@ -93,7 +93,7 @@ fun str_replace_all(s, from, to)
out = []
number i = 0
while i < n
if (i + lf <= n) && (substr(src, i, lf) == f)
if ((i + lf <= n) && (substr(src, i, lf) == f))
push(out, t)
i = i + lf
else