about summary refs log tree commit diff stats
path: root/arc/charterm/test-charterm.rkt
blob: 04eb376ffa87b16c53b127fbfbffaf1f620b396f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#lang racket/base
;; For legal info, see file "charterm.rkt".

;; (require (planet neil/charterm:1))
(require "charterm.rkt")

(with-charterm
 (charterm-clear-screen)
 (charterm-cursor 10 5)
 (charterm-display "Hello, ")
 (charterm-bold)
 (charterm-display "you")
 (charterm-normal)
 (charterm-display ".")
 (charterm-cursor 1 1)
 (charterm-display "Press a key...")
 (let ((key (charterm-read-key)))
   (charterm-cursor 1 1)
   (charterm-clear-line)
   (printf "You pressed: ~S\r\n" key)))
='/akkartik/mu/commit/html/counters.mu.html?h=main&id=c5ffb6e1cc9c5ff880d037c53b8ebc8562be0008'>c5ffb6e1 ^
f5465e12 ^

c5ffb6e1 ^
d009e158 ^
c5ffb6e1 ^
d009e158 ^
c5ffb6e1 ^
f5465e12 ^


c5ffb6e1 ^
f5465e12 ^

c5ffb6e1 ^
f5465e12 ^

c5ffb6e1 ^




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



                                                                                          
                               






                                                                                         

                                                                                                 
                        
                             
                            
                             
                            













                                                                                                       
                                                                                                                                                                         

                                                                                                                                                                  

 
                                                                                                                                                                                                           
                                           
                                                
                                                                                                                                                                                                                    
                                                                                                                           

 

                                           
                                          
                                                                                                                 
                                          
                                                                                                                 
                                                                          


                                                                                                        
                                              

                                                            
                                                                                                

                                                                                                                                      




                                     
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - counters.mu</title>
<meta name="Generator" content="Vim/7.4">
<meta name="plugin-version" content="vim7.4_v1">
<meta name="syntax" content="none">
<meta name="settings" content="use_css,pre_wrap,no_foldcolumn,expand_tabs,prevent_copy=">
<meta name="colorscheme" content="minimal">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; }
body { font-family: monospace; color: #eeeeee; background-color: #080808; }
* { font-size: 1.05em; }
.muRecipe { color: #ff8700; }
.Comment { color: #9090ff; }
.Constant { color: #00a0a0; }
.Special { color: #ff6060; }
-->
</style>

<script type='text/javascript'>
<!--

-->
</script>
</head>
<body>
<pre id='vimCodeElement'>
<span class="Comment"># example program: maintain multiple counters with isolated lexical scopes</span>
<span class="Comment"># (spaces)</span>

<span class="muRecipe">recipe</span> new-counter n:number<span class="muRecipe"> -&gt; </span><span class="Constant">default-space</span>:address:shared:array:location [
  <span class="Constant">default-space</span><span class="Special"> &lt;- </span>new <span class="Constant">location:type</span>, <span class="Constant">30</span>
  <span class="Constant">load-ingredients</span>
]

<span class="muRecipe">recipe</span> increment-counter outer:address:shared:array:location/names:new-counter, x:number<span class="muRecipe"> -&gt; </span>n:number/space:<span class="Constant">1</span> [
  <span class="Constant">local-scope</span>
  <span class="Constant">load-ingredients</span>
  <span class="Constant">0</span>:address:shared:array:location/names:new-counter<span class="Special"> &lt;- </span>copy outer  <span class="Comment"># setup outer space; it *must* come from 'new-counter'</span>
  n/space:<span class="Constant">1</span><span class="Special"> &lt;- </span>add n/space:<span class="Constant">1</span>, x
]

<span class="muRecipe">recipe</span> main [
  <span class="Constant">local-scope</span>
  <span class="Comment"># counter A</span>
  a:address:shared:array:location<span class="Special"> &lt;- </span>new-counter <span class="Constant">34</span>
  <span class="Comment"># counter B</span>
  b:address:shared:array:location<span class="Special"> &lt;- </span>new-counter <span class="Constant">23</span>
  <span class="Comment"># increment both by 2 but in different ways</span>
  increment-counter a, <span class="Constant">1</span>
  b-value:number<span class="Special"> &lt;- </span>increment-counter b, <span class="Constant">2</span>
  a-value:number<span class="Special"> &lt;- </span>increment-counter a, <span class="Constant">1</span>
  <span class="Comment"># check results</span>
  $print <span class="Constant">[Contents of counters</span>
<span class="Constant">]</span>
  <span class="Comment"># trailing space in next line is to help with syntax highlighting</span>
  $print <span class="Constant">[a: ]</span>, a-value, <span class="Constant">[ b: ]</span>, b-value, <span class="Constant">[ </span>
<span class="Constant">]</span>
]
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->