comparison tests/parser/for_1.d @ 147:060b6eb16db9

Parsing for-loops to some extend.
author Anders Johnsen <skabet@gmail.com>
date Mon, 21 Jul 2008 19:17:56 +0200
parents
children 393a1f47a6d2
comparison
equal deleted inserted replaced
146:8c09fdaa724e 147:060b6eb16db9
1
2 int main()
3 {
4 for(int i = 0; i < 5; i = i + 1)
5 {
6 }
7 return 0;
8 }