tomo/examples/http-server/sample-site/random.tm
2025-04-02 16:19:57 -04:00

18 lines
345 B
Tcl
Executable File

#!/bin/env tomo
use random
func main():
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>
")