File: 024_conditional.nml

package info (click to toggle)
nml 0.7.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,792 kB
  • sloc: python: 18,398; ansic: 109; makefile: 69
file content (11 lines) | stat: -rw-r--r-- 96 bytes parent folder | download | duplicates (2)
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;
}