go-vise

Constrained Size Output Virtual Machine
Info | Log | Files | Refs | README | LICENSE

commit 4915890910e1b50535b0b11421ecd6d2950007d5
parent 70bed5d9241ffca7fc07595957c30414a8e658c5
Author: lash <dev@holbrook.no>
Date:   Tue,  2 May 2023 09:12:18 +0100

Remove unneeded MOUT in bar in example

Diffstat:
M.gitignore | 2+-
MREADME.md | 4+---
Mdoc/build/sim.html | 4+---
Mdoc/texinfo/sim.texi | 4+---
Mexamples/intro/bar.vis | 3+--
5 files changed, 5 insertions(+), 12 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -2,4 +2,4 @@ examples/**/*.bin examples/**/*.txt **/.state build/ -doc/**/*html +doc/texinfo/**/*html diff --git a/README.md b/README.md @@ -131,7 +131,7 @@ MAP something # make the result from "something" available to the template HALT # render template and wait for input INCMP > 11 # handle the "next" menu choice INCMP < 22 # handle to "back" menu choice -INCMP ^ * # move to the root node on any input +INCMP _ * # move to the root node on any input ``` @@ -230,7 +230,6 @@ Thanks for visiting foo and bar. You have written: foo bar baz bazbaz -up:any 11:next ``` @@ -240,7 +239,6 @@ You have written: inky pinky blinky clyde -up:any 22:back ``` diff --git a/doc/build/sim.html b/doc/build/sim.html @@ -198,7 +198,7 @@ MAP something # make the result from &quot;something&quot; available to t HALT # render template and wait for input INCMP &gt; 11 # handle the &quot;next&quot; menu choice INCMP &lt; 22 # handle to &quot;back&quot; menu choice -INCMP ^ * # move to the root node on any input +INCMP _ * # move to the root node on any input </pre> </div> @@ -299,7 +299,6 @@ clyde You have written: foo bar baz bazbaz -up:any 11:next </pre> <pre class="verbatim">Thanks for visiting foo and bar. @@ -307,7 +306,6 @@ You have written: inky pinky blinky clyde -up:any 22:back </pre> diff --git a/doc/texinfo/sim.texi b/doc/texinfo/sim.texi @@ -136,7 +136,7 @@ MAP something # make the result from "something" available to the templat HALT # render template and wait for input INCMP > 11 # handle the "next" menu choice INCMP < 22 # handle to "back" menu choice -INCMP ^ * # move to the root node on any input +INCMP _ * # move to the root node on any input @end verbatim @@ -239,7 +239,6 @@ Thanks for visiting foo and bar. You have written: foo bar baz bazbaz -up:any 11:next @end verbatim @@ -249,7 +248,6 @@ You have written: inky pinky blinky clyde -up:any 22:back @end verbatim diff --git a/examples/intro/bar.vis b/examples/intro/bar.vis @@ -2,8 +2,7 @@ CATCH ouch 8 0 MAP something MNEXT next 11 MPREV back 22 -MOUT up any HALT INCMP > 11 INCMP < 22 -INCMP ^ * +INCMP _ *