Renaming of samples from .wes to .chai

This commit is contained in:
Jonathan Turner
2009-06-12 01:29:11 +00:00
parent b96059cba8
commit 7e46064bdc
11 changed files with 0 additions and 0 deletions

13
samples/for.chai Normal file
View File

@@ -0,0 +1,13 @@
for (var i = 0; i < 10; ++i) {
print(i)
}
for (i = 10; i >= 0; i -= 2) {
print(i)
}
i = 0
for (; i < 5; ++i) {
print(i)
}