aboutsummaryrefslogtreecommitdiff
path: root/examples/http-server/sample-site/random.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-06 14:20:18 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-06 14:20:18 -0400
commit2bb2ff871fa1761478442bec5f6a32c9428360a1 (patch)
tree9b73df7a0c50c02353ae7bca7c2cd54788ef0077 /examples/http-server/sample-site/random.tm
parent59845e610f2c90474f34079d27b5f1e07071ded4 (diff)
Change method calls to use `foo.baz()` instead of `foo:baz()`
Diffstat (limited to 'examples/http-server/sample-site/random.tm')
-rwxr-xr-xexamples/http-server/sample-site/random.tm2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/http-server/sample-site/random.tm b/examples/http-server/sample-site/random.tm
index 502618e8..29b93be7 100755
--- a/examples/http-server/sample-site/random.tm
+++ b/examples/http-server/sample-site/random.tm
@@ -11,7 +11,7 @@ func main():
</head>
<body>
<h1>Random Number</h1>
- Your random number is: $(random:int(1,100))
+ Your random number is: $(random.int(1,100))
</body>
</html>
")