tomo/examples/http-server/sample-site/random.tm

18 lines
345 B
Plaintext
Raw Normal View History

2025-04-01 18:15:17 -07:00
#!/bin/env tomo
use random
func main():
2025-04-02 13:19:57 -07:00
say("
<!DOCTYPE HTML>
<html>
<head>
<title>Random Number</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Random Number</h1>
Your random number is: $(random:int(1,100))
</body>
</html>
")