mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 01:30:22 +00:00
10 lines
155 B
Plaintext
10 lines
155 B
Plaintext
/**
|
|
* To compile & run on port 8080:
|
|
* opa hello_syntax1.opa --
|
|
*/
|
|
server = Server.one_page_server(
|
|
"Hello, world",
|
|
-> (<h1>Hello, world</h1>)
|
|
)
|
|
|