# HG changeset patch # User Mike Pavone # Date 1342194610 25200 # Node ID cd41f7c22fcdeab8e8a80a103e87383ce3201536 # Parent 55572bb1562329ac1ec7625295ef1cf19a97cf27 Remove compiled hello and private samples and add source diff -r 55572bb15623 -r cd41f7c22fcd samples/hello Binary file samples/hello has changed diff -r 55572bb15623 -r cd41f7c22fcd samples/hello.tp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/samples/hello.tp Fri Jul 13 08:50:10 2012 -0700 @@ -0,0 +1,5 @@ +#{ + main <- { + print: "Hello, world!" + } +} diff -r 55572bb15623 -r cd41f7c22fcd samples/private Binary file samples/private has changed diff -r 55572bb15623 -r cd41f7c22fcd samples/private.tp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/samples/private.tp Fri Jul 13 08:50:10 2012 -0700 @@ -0,0 +1,21 @@ +#{ + makeobj <- { + foo <- 40 + #{ + bar <- { + foo + } + inc <- { + foo <- foo + 1 + 1 + } + } + } + main <- { + baz <- makeobj: + inc: baz + inc: baz + bar: baz + } +} +