blob: 14c0c93f0ec7a282438a54951a225a4aa26f5d75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/**
* To compile & run on port 8080:
* opa --parser js-like hello_syntax2.opa --
*/
Server.start(
Server.http,
{
page: function() { <h1>Hello, world</h1> },
title: "Hello, world"
}
)
|