diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-24 16:52:22 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-24 16:52:22 -0700 |
commit | 544a1f1e17d909673f08a50b97fc9d00df431eb4 (patch) | |
tree | 55f5e911b8b9f2d30ca2e8b0ccad43fdadae0713 /cpp | |
parent | d253de9f309cec128fdd42785664cc730eb9898d (diff) | |
download | mu-544a1f1e17d909673f08a50b97fc9d00df431eb4.tar.gz |
1165
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/010vm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/010vm b/cpp/010vm index d6f6e5a9..76d41a71 100644 --- a/cpp/010vm +++ b/cpp/010vm @@ -18,8 +18,8 @@ struct recipe { :(before "struct recipe") // Each instruction is either of the form: // product1, product2, product3, ... <- operation ingredient1, ingredient2, ingredient3, ... -// or just a single 'label' followed by a colon -// label: +// or just a single 'label' starting with a non-alphanumeric character +// +label // Labels don't do anything, they're just waypoints. struct instruction { bool is_label; |