view testscripttags.html @ 68:3a169ebb3224

Change strategy for handling true and false to avoid some initialization order problems and improve performance. Add support for negative integer literals. Update samples to reflect true/false change.
author Mike Pavone <pavone@retrodev.com>
date Sat, 14 Jul 2012 16:14:01 -0700
parents 02b20292f187
children
line wrap: on
line source

<!DOCTYPE html>
<html>
<head>
	<title>Parser Test</title>
	<script src="peg.js"></script>
	<script src="mquery.js"></script>
	<script src="parser.js"></script>
	<script src="compiler.js"></script>
	<script src="jsbackend.js"></script>
	<script src="scripttags.js"></script>
	<script src="samples/fib.tp" type="text/tabletprog"></script>
	<script type="text/tabletprog">
		#{
			console <- foreign: #{
				log <- foreign: :val {}
			}
			main <- {
				console log: "foobar"
			}
		}
	</script>
</head>
<body>
	Testing 1 2 3
</body>
</html>