use latest-hare example
This commit is contained in:
parent
56462f0d1b
commit
70c5618eca
|
@ -34,10 +34,10 @@ export fn main() void = {
|
||||||
"Привіт, світ!",
|
"Привіт, світ!",
|
||||||
"こんにちは世界!",
|
"こんにちは世界!",
|
||||||
];
|
];
|
||||||
for (let i = 0z; i < len(greetings); i+= 1) {
|
for (let greeting .. greetings) {
|
||||||
fmt::println(greetings[i])!;
|
fmt::println(greeting)!;
|
||||||
};
|
};
|
||||||
};`
|
};`;
|
||||||
|
|
||||||
if (location.hash) {
|
if (location.hash) {
|
||||||
let code = base64Decode(location.hash.substr(1));
|
let code = base64Decode(location.hash.substr(1));
|
||||||
|
|
Loading…
Reference in a new issue