diff options
| author | gretchen <gretchen@gnar.cool> | 2019-11-18 16:40:22 -0800 | 
|---|---|---|
| committer | gretchen <gretchen@gnar.cool> | 2019-11-18 16:40:22 -0800 | 
| commit | a4549752db6551f0a6cc17d80b67832fad8848f0 (patch) | |
| tree | eacc414259bee94da38ba989acca8a55f9ce1d4a /example | |
| parent | f9b5a2cb020fb602a415d1ff2de39b7b2cc4b868 (diff) | |
| download | norns-etc-a4549752db6551f0a6cc17d80b67832fad8848f0.tar.gz norns-etc-a4549752db6551f0a6cc17d80b67832fad8848f0.zip | |
Wow indentation
Diffstat (limited to 'example')
| -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 | 
