mirror of
https://github.com/Open-Argon/argon-v3.git
synced 2025-12-06 08:56:07 +00:00
9 lines
139 B
Plaintext
9 lines
139 B
Plaintext
import "http.ar" as http
|
|
|
|
let server = http.server()
|
|
|
|
let home(req,res) = do
|
|
res.send("hello world")
|
|
server.get("/",home)
|
|
|
|
server.run() |