about summary refs log tree commit diff stats
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README2
1 files changed, 1 insertions, 1 deletions
diff --git a/README b/README
index 23317dd..0bcbdaa 100644
--- a/README
+++ b/README
@@ -63,7 +63,7 @@ This collection includes:
 2.1 Release
 ───────────
 
-  1. Run `zef install fornax'.
+  1. Run `zef install 'fornax:auth<zef:andinus>''
 
   Fornax should be installed, try running `fornax --version' to confirm.
 
c@akkartik.com> 2016-10-08 10:52:58 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2016-10-08 10:53:06 -0700 3483' href='/akkartik/mu/commit/console.mu?h=hlt&id=9458918f9eb88817e6b58e6e475597f8d60ecc40'>9458918f ^
ce87c19e ^
bc643692 ^
6a0f71b9 ^

290fe117 ^
4d6b5173 ^
6a0f71b9 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16



                                                                 
          
             
              
   
                                                 
                   
                                          

        
               
                      
 
# example program: reading events from keyboard or mouse
#
# Keeps printing 'a' until you press a key or click on the mouse.

def main [
  local-scope
  open-console
  {
    e:event, found?:bool <- check-for-interaction
    break-if found?
    print-character-to-display 97, 7/white
    loop
  }
  close-console
  $print e, 10/newline
]