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