diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-18 07:50:51 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-18 07:50:51 -0700 |
commit | c8e725632e106920edd7b6aad1556dd8993ecee4 (patch) | |
tree | 19d70093eccb531cbb6c8692e87d73d214e404a8 | |
parent | 2d938a1c362f82d27aeff55a11991bf522f3308e (diff) | |
download | mu-c8e725632e106920edd7b6aad1556dd8993ecee4.tar.gz |
1096
-rw-r--r-- | cpp/021arithmetic | 2 | ||||
-rw-r--r-- | cpp/022boolean | 2 | ||||
-rw-r--r-- | cpp/023jump | 2 | ||||
-rw-r--r-- | cpp/024compare | 2 | ||||
-rw-r--r-- | cpp/060string.mu | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/cpp/021arithmetic b/cpp/021arithmetic index 15c5d9f3..6f7fb1f3 100644 --- a/cpp/021arithmetic +++ b/cpp/021arithmetic @@ -1,4 +1,4 @@ -//: Arithmetic primitives. +//: Arithmetic primitives :(before "End Primitive Recipe Declarations") ADD, diff --git a/cpp/022boolean b/cpp/022boolean index 044a3b2b..e7fc9b44 100644 --- a/cpp/022boolean +++ b/cpp/022boolean @@ -1,4 +1,4 @@ -//: Boolean primitives. +//: Boolean primitives :(before "End Primitive Recipe Declarations") AND, diff --git a/cpp/023jump b/cpp/023jump index 128b3924..01314ace 100644 --- a/cpp/023jump +++ b/cpp/023jump @@ -1,4 +1,4 @@ -//: Jump primitives. +//: Jump primitives :(before "End Primitive Recipe Declarations") JUMP, diff --git a/cpp/024compare b/cpp/024compare index 8675c36a..f39f4941 100644 --- a/cpp/024compare +++ b/cpp/024compare @@ -1,4 +1,4 @@ -//: Comparison primitives. +//: Comparison primitives :(before "End Primitive Recipe Declarations") EQUAL, diff --git a/cpp/060string.mu b/cpp/060string.mu index fb1a1eb5..8f64b67f 100644 --- a/cpp/060string.mu +++ b/cpp/060string.mu @@ -1,4 +1,4 @@ -# Some useful helpers for dealing with strings +# Some useful helpers for dealing with strings. recipe string-equal [ default-space:address:space <- new location:type, 30:literal |