about summary refs log tree commit diff stats
path: root/archive
Commit message (Collapse)AuthorAgeFilesLines
* 6206Kartik Agaram2020-04-176-115/+66
|
* 6155Kartik Agaram2020-03-201-1/+3
|
* 6066 - Vim syntax highlighting for Mu filesKartik Agaram2020-02-281-1/+1
|
* 5960Kartik Agaram2020-01-301-0/+1
|
* 5959Kartik Agaram2020-01-301-1/+1
|
* 5853Kartik Agaram2020-01-013-135/+0
|
* 5852Kartik Agaram2020-01-01232-3/+3
|
* 5787Kartik Agaram2019-12-026-18/+262
|
* 5494Kartik Agaram2019-07-271-0/+11
|
* 5485 - promote SubX to top-levelKartik Agaram2019-07-27229-0/+80488
lt'>
12d73ee8 ^
6a0f71b9 ^
0012c703 ^
6a0f71b9 ^
0012c703 ^
6a0f71b9 ^
0012c703 ^
6a0f71b9 ^
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
25

                                       
          
              
               
                                               
                                                    
                           
                       

                               
                           
                             
                       
                           
                             
                           
                              
                           
                             
                           
                           
                           
               
 
# example program: managing the display

def main [
  open-console
  clear-display
  print-character-to-display 97, 1/red, 2/green
  1:num/raw, 2:num/raw <- cursor-position-on-display
  wait-for-some-interaction
  clear-line-on-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
]