-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathlaunch.json
More file actions
43 lines (41 loc) · 947 Bytes
/
launch.json
File metadata and controls
43 lines (41 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Adult",
"request": "launch",
"mainClass": "effectivejava.chapter2.item8.Adult",
"projectName": "effective-java-3e-source-code_616714c9"
},
{
"type": "java",
"name": "Run RomanNumerals with args",
"request": "launch",
"mainClass": "effectivejava.chapter2.item6.RomanNumerals",
"args": [
"5",
"1000"
]
},
{
"type": "java",
"name": "Run Sum with args",
"request": "launch",
"mainClass": "effectivejava.chapter2.item6.Sum",
"args": [
"1"
]
},
{
"type": "java",
"name": "Run Operation with args",
"request": "launch",
"mainClass": "effectivejava.chapter7.item42.Operation",
"args": [
"2",
"3"
]
}
]
}