We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a826e8 commit ed8360bCopy full SHA for ed8360b
ui/frontend/Help.tsx
@@ -26,7 +26,7 @@ const CRATE_EXAMPLE = `import io.vavr.collection.Vector;
26
void main() {
27
IO.println(Vector.of(
28
"a", "b", "c"
29
- ))
+ ));
30
}
31
`;
32
ui/frontend/reducers/code.ts
@@ -3,7 +3,7 @@ import { performGistLoad } from './output/gist'
3
import { performFormat } from './output/format'
4
5
const DEFAULT: State = `void main() {
6
- IO.println("Hello, world!");
+ IO.println("Hello, world!");
7
}`;
8
9
export type State = string;
0 commit comments