code / tomo-http-server

Lines215 Tomo159 HTML21 Markdown14 CSS11 INI9
1 others 1
Text1
(17 lines)
1 #!/bin/env tomo
2 use random
4 func main()
5 say("
6 <!DOCTYPE HTML>
7 <html>
8 <head>
9 <title>Random Number</title>
10 <link rel="stylesheet" href="styles.css">
11 </head>
12 <body>
13 <h1>Random Number</h1>
14 Your random number is: $(random.int(1,100))
15 </body>
16 </html>
17 ")