File: 025_loop.nml

package info (click to toggle)
nml 0.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,688 kB
  • sloc: python: 12,961; makefile: 37
file content (4 lines) | stat: -rw-r--r-- 40 bytes parent folder | download | duplicates (7)
1
2
3
4
i = 0;
while (i < 5) {
    i = i + 1;
}