1
Fork 0

live deploy!

This commit is contained in:
Jan-Erik Rediger 2024-05-25 01:16:44 +02:00
parent 17a775d93f
commit 38cbf627dc

View file

@ -46,11 +46,9 @@
</style>
</head>
<body>
<codapi-settings url="http://joltrast:8080/v1"></codapi-settings>
<codapi-settings url="https://hare-exec.fly.dev/v1"></codapi-settings>
<div id="playground">
<pre class="code"><code contenteditable="true">
use fmt;
use time;
<pre class="code"><code contenteditable="true">use fmt;
export fn main() void = {
const greetings = [
@ -62,7 +60,6 @@ export fn main() void = {
];
for (let i = 0z; i < len(greetings); i+= 1) {
fmt::println(greetings[i])!;
time::sleep(1 * time::SECOND);
};
};
</code></pre>