about summary refs log tree commit diff stats
path: root/enumerate/enumerate.cc
Commit message (Expand)AuthorAgeFilesLines
* 2665Kartik K. Agaram2016-02-171-13/+4
* 2155 - `mu` can now load all files in a directoryKartik K. Agaram2015-09-051-1/+1
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+35
a <silvino@bk.ru> 2016-09-15 00:47:34 +0100 committer Silvino Silva <silvino@bk.ru> 2016-09-15 00:47:34 +0100 added tools' href='/punk/doc/commit/tools/squid.html?id=07bedee34d9ded6f86904c7e4b4e02464ff8cb14'>07bedee ^
7514d8a ^
07bedee ^






















7514d8a ^
07bedee ^









183caad ^
07bedee ^





1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76























                                                                                                                 
                                                    



                                    
                                                                                   



                  
                                                                                                                                   






















                                                                                                                                                                                         
                                                                                                                                                                                                                          









                                             
                





                                                                                         
t;vc@akkartik.com>  2015-04-28 21:28:34 -0700
committer  Kartik K. Agaram <vc@akkartik.com>  2015-04-28 21:28:34 -0700

1215 - relative motions for cursor' href='/akkartik/mu/commit/cpp/display.mu?h=main&id=0012c7037f63bf9a0195ba493448bc16f01655cd'>0012c703 ^
6a0f71b9 ^
290fe117 ^
54d48b25 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

                                       
          
              
                                               
                                                          
                           
               

                               
                           
                             
                       
                           
                             
                           
                              
                           
                             
                           
                           
                           
               
 
# example program: managing the display

def main [
  open-console
  print-character-to-display 97, 1/red, 2/green
  1:number/raw, 2:number/raw <- cursor-position-on-display
  wait-for-some-interaction
  clear-display
  move-cursor-on-display 0, 4
  print-character-to-display 98
  wait-for-some-interaction
  move-cursor-on-display 0, 0
  clear-line-on-display
  wait-for-some-interaction
  move-cursor-down-on-display
  wait-for-some-interaction
  move-cursor-right-on-display
  wait-for-some-interaction
  move-cursor-left-on-display
  wait-for-some-interaction
  move-cursor-up-on-display
  wait-for-some-interaction
  close-console
]