aboutsummaryrefslogtreecommitdiff
path: root/ABC/Assembler.icl
diff options
context:
space:
mode:
authorCamil Staps2017-07-20 19:50:01 +0000
committerCamil Staps2017-07-20 19:50:01 +0000
commit628b8d6ec43d7f5e7e17e2cbd529336c2a10494a (patch)
treec46d5e2b60d5a3e8960c018f9bb61f98f45a962a /ABC/Assembler.icl
parentAdd notB (diff)
Fix printing of booleans
Diffstat (limited to 'ABC/Assembler.icl')
-rw-r--r--ABC/Assembler.icl2
1 files changed, 1 insertions, 1 deletions
diff --git a/ABC/Assembler.icl b/ABC/Assembler.icl
index 9cf2961..0d90e90 100644
--- a/ABC/Assembler.icl
+++ b/ABC/Assembler.icl
@@ -26,7 +26,7 @@ instance <<< Statement where <<< f st = f <<< toString st
generic gPrint a :: !a -> [Char]
gPrint{|Int|} x = fromString (toString x)
-gPrint{|Bool|} x = map toLower (fromString (toString x))
+gPrint{|Bool|} x = map toUpper (fromString (toString x))
gPrint{|String|} x = fromString x
gPrint{|Annotation|} x = fromString (printAnnot x)
where