diff --git a/doc/nasal-http-test-web.html b/doc/nasal-http-test-web.html new file mode 100644 index 0000000..81fbeef --- /dev/null +++ b/doc/nasal-http-test-web.html @@ -0,0 +1,64 @@ + +
++ 1+ +var
nasal
=
func
(
lexical
,
syntax
)
{
+ 2
return
{
+ 3
:
func
{
println
(
"hello world"
)
}
,
+ 4
set_lex
:
func
(
lex
)
{
lexical
=
lex
}
, + 5
get_lex
:
func
{
return
lexical
}
,
+ 6
set_syn
:
func
(
syn
)
{
syntax
=
syn
}
,
+ 7
get_syn
:
func
{
return
syntax
}
+ 8
}
;
+ 9}
+