Rename samples subdirectories

This commit is contained in:
Joshua Peek
2012-07-23 15:52:49 -05:00
parent 314f0e4852
commit 7b6caa0f6c
273 changed files with 2952 additions and 2955 deletions

View File

@@ -0,0 +1,9 @@
/**
* To compile & run on port 8080:
* opa hello_syntax1.opa --
*/
server = Server.one_page_server(
"Hello, world",
-> (<h1>Hello, world</h1>)
)

View File

@@ -0,0 +1,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"
}
)