ultimatepp/tutorial/Skylark02/index.witz
cxl c2cdd97d1e Skylark tutorial now has <!DOCTYPE html>
git-svn-id: svn://ultimatepp.org/upp/trunk@7280 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2014-04-18 18:56:58 +00:00

16 lines
262 B
Text

<!DOCTYPE html>
<html>
<body>
MyValue: $MyValue<br>
MyRawValue: $MyRawValue<br>
MyRawValue2: $raw(MyRawValue2)<br>
<br>MyArray:<br>
$for(i in MyArray)
$i._index. $i<br>
$endfor
<br>MyMap:<br>
$for(i in MyMap)
$i._index. $i._key: $i<br>
$endfor
</body>
</html>