about summary refs log tree commit diff stats
path: root/cpp/022boolean
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-24 10:19:03 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-24 10:19:03 -0700
commit88be3dbc0c996490dbac97538f4d712a5b4f6f07 (patch)
treedbba8f597d3090bb71553544ba28c59644973b3b /cpp/022boolean
parente351d6fd04d95068fac4402dc103e0752182fa8d (diff)
downloadmu-88be3dbc0c996490dbac97538f4d712a5b4f6f07.tar.gz
1162
Diffstat (limited to 'cpp/022boolean')
-rw-r--r--cpp/022boolean6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/022boolean b/cpp/022boolean
index e7fc9b44..1aef69d9 100644
--- a/cpp/022boolean
+++ b/cpp/022boolean
@@ -19,7 +19,7 @@ case AND: {
   break;
 }
 
-:(scenario "and")
+:(scenario and)
 recipe main [
   1:integer <- copy 1:literal
   2:integer <- copy 0:literal
@@ -52,7 +52,7 @@ case OR: {
   break;
 }
 
-:(scenario "or")
+:(scenario or)
 recipe main [
   1:integer <- copy 1:literal
   2:integer <- copy 0:literal
@@ -82,7 +82,7 @@ case NOT: {
   break;
 }
 
-:(scenario "not")
+:(scenario not)
 recipe main [
   1:integer <- copy 1:literal
   2:integer <- not 1:integer