about summary refs log tree commit diff stats
path: root/index.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-18 15:22:49 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-18 15:22:49 -0700
commit762b099ef6c6ad5b6b61d29e473baa6df8d64ab9 (patch)
tree8075befbcc8ef2784616c4937793ebed9d21123d /index.html
parent614ea44bc2708a687ba10b162a6dc70e48dfac59 (diff)
downloadmu-762b099ef6c6ad5b6b61d29e473baa6df8d64ab9.tar.gz
1818
Diffstat (limited to 'index.html')
-rw-r--r--index.html18
1 files changed, 10 insertions, 8 deletions
diff --git a/index.html b/index.html
index 9926243c..40aea7b9 100644
--- a/index.html
+++ b/index.html
@@ -40,8 +40,10 @@ also supports first-class functions and delimited continuations.
 print primitives that inject a screen <em>dependency</em> which can be faked
 for testing.
 <li><a href='html/chessboard.mu.html'>chessboard.mu</a>: putting it all
-together, the big kahuna: a complete console program along with thorough tests
-of its behavior including both screen and keyboard handling.
+together, a little console program along with thorough tests of its behavior
+including both screen and keyboard handling.
+<li><a href='html/edit.mu.html'>edit.mu</a>: the programming environment I
+plan to use to teach programming.
 </ul>
 
 <p><b>Part I</b>: basic infrastructure
@@ -156,12 +158,12 @@ the real screen with fake ones for testing.
 <br/><a href='html/072scenario_screen.cc.html'>072scenario_screen.cc</a>:
 writing tests that check what is printed to screen.
 (<a href='html/073scenario_screen_test.mu.html'>examples</a>)
-<br/><a href='html/074keyboard.mu.html'>074keyboard.mu</a>: helpers that can
-swap the real keyboard with fake ones for testing.
-<br/><a href='html/075scenario_keyboard.cc.html'>075scenario_keyboard.cc</a>:
-writing tests using a fake keyboard.
-(<a href='html/076scenario_keyboard_test.mu.html'>examples</a>)
-<br/><a href='html/077trace_browser.cc.html'>077trace_browser.cc</a>: a
+<br/><a href='html/074console.mu.html'>074console.mu</a>: helpers that can
+swap the real keyboard and mouse with fake ones for testing.
+<br/><a href='html/075scenario_console.cc.html'>075scenario_console.cc</a>:
+writing tests for keyboard and mouse using the fakes.
+(<a href='html/076scenario_console_test.mu.html'>examples</a>)
+<br/><a href='html/080trace_browser.cc.html'>080trace_browser.cc</a>: a
 zoomable UI for inspecting traces generated by mu programs. Allows both
 scanning a high-level view and drilling down into selective details.