nitc :: AbstractCompilerVisitor :: bool_instance
# Generate an integer value fun bool_instance(value: Bool): RuntimeVariable do var s = if value then "1" else "0" var res = new RuntimeVariable(s, bool_type, bool_type) return res end