[ prog / sol / mona ]

prog


Wanting to get back into Scheme (and LISP in general).

17 2023-12-28 11:51

Symta:
[code]
use www
www port!8080: hello = "hello world"
[/code]

GNU/Free Software:
[code]
(use-modules (artanis artanis))
(init-server)
(get "/hello"(lambda () "hello world"))
;; run it
(run #:port 8080)
[/code]

33


VIP:

do not edit these