We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f83b7d commit 7b3464eCopy full SHA for 7b3464e
src/main/java/org/piccode/rt/PiccodeBoolean.java
@@ -10,8 +10,12 @@
10
public class PiccodeBoolean implements PiccodeValue {
11
private String value;
12
13
- public PiccodeBoolean(String number) {
14
- this.value = number;
+ public PiccodeBoolean(String value) {
+ this.value = value;
15
+ }
16
+
17
+ public PiccodeBoolean(boolean value) {
18
+ this.value = String.valueOf(value);
19
}
20
21
@Override
0 commit comments