Skip to content

Commit 265ddf0

Browse files
committed
correto
1 parent 79cabce commit 265ddf0

File tree

2 files changed

+91
-1
lines changed

2 files changed

+91
-1
lines changed

.gitignore

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,91 @@
11
links.txt
2+
##############################
3+
## Java
4+
##############################
5+
.mtj.tmp/
6+
*.class
7+
*.jar
8+
*.war
9+
*.ear
10+
*.nar
11+
hs_err_pid*
12+
replay_pid*
13+
14+
##############################
15+
## Maven
16+
##############################
17+
target/
18+
pom.xml.tag
19+
pom.xml.releaseBackup
20+
pom.xml.versionsBackup
21+
pom.xml.next
22+
pom.xml.bak
23+
release.properties
24+
dependency-reduced-pom.xml
25+
buildNumber.properties
26+
.mvn/timing.properties
27+
.mvn/wrapper/maven-wrapper.jar
28+
29+
##############################
30+
## Gradle
31+
##############################
32+
bin/
33+
build/
34+
.gradle
35+
.gradletasknamecache
36+
gradle-app.setting
37+
!gradle-wrapper.jar
38+
39+
##############################
40+
## IntelliJ
41+
##############################
42+
out/
43+
.idea/
44+
.idea_modules/
45+
*.iml
46+
*.ipr
47+
*.iws
48+
49+
##############################
50+
## Eclipse
51+
##############################
52+
.settings/
53+
bin/
54+
tmp/
55+
.metadata
56+
.classpath
57+
.project
58+
*.tmp
59+
*.bak
60+
*.swp
61+
*~.nib
62+
local.properties
63+
.loadpath
64+
.factorypath
65+
66+
##############################
67+
## NetBeans
68+
##############################
69+
nbproject/private/
70+
build/
71+
nbbuild/
72+
dist/
73+
nbdist/
74+
nbactions.xml
75+
nb-configuration.xml
76+
77+
##############################
78+
## Visual Studio Code
79+
##############################
80+
.vscode/
81+
.code-workspace
82+
83+
##############################
84+
## OS X
85+
##############################
86+
.DS_Store
87+
88+
##############################
89+
## Miscellaneous
90+
##############################
91+
*.log

Hello/src/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public class App {
22
public static void main(String[] args) throws Exception {
3-
int num = 1100;
3+
int num = 100;
44
num = soma(num,2);
55
String teste = "aaa";
66
System.out.println("Hello, WSL! " + num);

0 commit comments

Comments
 (0)