fix brainfuck, allow multiplying array by int, and fix incorrect error message in ord

This commit is contained in:
2025-02-19 02:31:32 +00:00
parent c75be1c8ed
commit 8f51b24c7c
6 changed files with 81 additions and 37 deletions

9
server_test/app.ar Normal file
View File

@@ -0,0 +1,9 @@
import "http.ar" as http
let server = http.server()
let home(req,res) = do
res.send("hello world")
server.get("/", home)
server.run()