File: 024_conditional.nml

package info (click to toggle)
nml 0.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,932 kB
  • sloc: python: 20,457; ansic: 109; makefile: 68
file content (11 lines) | stat: -rw-r--r-- 96 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
if (param[0]) {
    param[1] = 1;
}

if (0) {
    param[2] = 1;
}

if (1) {
    param[3] = 1;
}