-
Notifications
You must be signed in to change notification settings - Fork 0
C++ Page Language
gorilla3d edited this page Feb 18, 2011
·
6 revisions
Each page must use the @page annotation
[[@page="/demo"]]
Hello World!
All loops can use C++ Alternative Syntax for easier block start and end markers
Normal Syntax
[[for(auto i = 0; i < 10000; i++) {]]
I am number [[=i]]<br />
[[}]]
Alternative Syntax
[[for(auto i = 0; i < 10000; i++):]]
I am number [[=i]]<br />
[[end]]
Normal Syntax
[[while(i < 10000) {]]
I am number [[=i]]<br />
[[i++]]
[[}]]
Alternative Syntax
[[while(i < 10000):]]
I am number [[=i]]<br />
[[i++]]
[[end]]