diff options
-rw-r--r-- | example/example.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/example/example.lua b/example/example.lua index e96ba34..3b989d2 100644 --- a/example/example.lua +++ b/example/example.lua @@ -2,15 +2,15 @@ -- Load this file in emacs and M-x compile to upload. function redraw() - screen.clear() - screen.move(64, 32) - screen.text_center("norns example #" .. math.floor(math.random() * 1000)) - screen.update() + screen.clear() + screen.move(64, 32) + screen.text_center("norns example #" .. math.floor(math.random() * 1000)) + screen.update() end function init() - redraw() + redraw() end -- This needs to be at the end so that it doesn't conflict with the |