about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/hanoi.lua9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/hanoi.lua b/src/hanoi.lua
index f3d08fa..d8c6cb6 100644
--- a/src/hanoi.lua
+++ b/src/hanoi.lua
@@ -65,10 +65,11 @@ end
 local function main()
   local screen = curses.stdscr()
 
-  while true do
-    render(screen)
-    update(screen)
-  end
+  render(screen)
+--?   while true do
+--?     render(screen)
+--?     update(screen)
+--?   end
 end