DEBSOURCES
Skip Quicknav
sources / rumur / 2025.08.31-1 / tests / basic-const.m
123456789101112131415
const N: 2; var x: boolean; startstate begin x := true; end; rule begin if N = 2 then x := !x; end; end;