File tree Expand file tree Collapse file tree 2 files changed +6
-10
lines changed
Expand file tree Collapse file tree 2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,10 @@ const LEO_GITHUB_URL = 'https://github.com/LeonardoA77';
2323
2424const CRATE_EXAMPLE = `import io.vavr.collection.Vector;
2525
26- class Main {
27- public static void main(String[] args) {
28- System.out.println(Vector.of(
29- "a", "b", "c"
30- ));
31- }
26+ void main() {
27+ IO.println(Vector.of(
28+ "a", "b", "c"
29+ ))
3230}
3331` ;
3432
Original file line number Diff line number Diff line change @@ -2,10 +2,8 @@ import { Action, ActionType } from '../actions';
22import { performGistLoad } from './output/gist'
33import { performFormat } from './output/format'
44
5- const DEFAULT : State = `public class Main {
6- public static void main(String[] args) {
7- System.out.println("Hello, world!");
8- }
5+ const DEFAULT : State = `void main() {
6+ IO.println("Hello, world!");
97}` ;
108
119export type State = string ;
You can’t perform that action at this time.
0 commit comments