More docs updating

This commit is contained in:
Jeremy Ruston 2012-06-10 17:48:23 +01:00
parent cd824a350a
commit c677b4bddf
44 changed files with 142 additions and 40 deletions

View file

@ -0,0 +1,14 @@
title: SampleJavaScriptTiddlerWithError
type: application/javascript
tags: demo
/*
This is an example JavaScript program that contains an error
*/
function myFunction(param) {
if(=) { // An error
param = param/17;
}
return param * Math.PI; // Perform a calculation
}