blob: 1d5e3b547ca06d429fce258ae911ca1dc1586f7b (
plain)
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
|
fun fst [a] [b] (x : a) (y : b) = x
fun snd [a] [b] (x : a) (y : b) = y
fun fact n =
case n of
0 => 1
| _ => n * fact (n - 1)
fun main () =
s <- source "";
s' <- source "";
f <- source (plus 1);
f2 <- source fst;
r <- source {A = "x", B = "y"};
return <xml><body>
<ctextbox source={s}/> <ctextbox source={s'}/><br/><br/>
Function: <button value="+1" onclick={set f (plus 1)}/>
<button value="*3" onclick={set f (times 3)}/><br/><br/>
Function2: <button value="Fst" onclick={set f2 fst}/>
<button value="Snd" onclick={set f2 snd}/><br/><br/>
<button value="Echo" onclick={s <- get s; alert s}/>
<button value="-" onclick={s <- get s; alert (show (-(readError s : int)))}/>
<button value="+1" onclick={s <- get s; alert (show (readError s + 1))}/>
<button value="*3" onclick={s <- get s; alert (show ((readError s) * 3))}/>
<button value="!" onclick={s <- get s; alert (show (fact (readError s)))}/>
<button value="f" onclick={s <- get s; f <- get f; alert (show (f (readError s)))}/>
<button value="+1P" onclick={s <- get s; case read s of
None => alert "Nada!"
| Some (n : int) => alert (show (n + 1))}/>
<button value="f2" onclick={s <- get s; s' <- get s'; f2 <- get f2; alert (f2 s s')}/><br/><br/>
<button value="A" onclick={r <- get r; alert r.A}/>
<button value="B" onclick={r <- get r; alert r.B}/>
</body></xml>
|