-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 808 Bytes
/
index.html
File metadata and controls
36 lines (33 loc) · 808 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="mt.js"></script>
<script src="dom.mt.js"></script>
<title>Test</title>
</head>
<body>
<script type="text/mt">
/*
{
<$> num < 8 ?
[ num this:f ]{ $> f -> ( $> num + 2 ) }
[num]{ $> num }
} <$> ptf ;
$> ptf -> 3
*/
/* 3 ?= { < 8 }
{ + 2 } */
{ + 5 } =$foo ;
[ 1 , 2 , 3 , 4 , 5 ] |> map $foo
</script>
<script type="text/mt">
//HTMLget body @ print # 0 @ HTMLon mousedown { print 8 }
</script>
<script type="text/mt">
//HTMLget body # 0 # style # backgroundColor red
//HTMLget body # 0 # style # height 100vh
</script>
</body>
</html>