Mercurial > hg > Members > nobuyasu > myCompiler
view Bison-Flex/Compiler-StackBase/UTF8/file.txt @ 6:86c0a38332fe
update
author | nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 17 May 2011 18:26:00 +0900 |
parents | 805d39d28230 |
children |
line wrap: on
line source
void increment(int& x) { x += 1; } int main() { int i,x; x = 0; for(i=0; i<5; i+=1) { increment(x); } return x; }