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 b693356 commit e7b6fe2Copy full SHA for e7b6fe2
code/tutorial_50/tutorial_50.md
@@ -3,6 +3,8 @@
3
#### What / Why?
4
> A package is a group of class files.
5
6
+> Packages help organize your code.
7
+
8
> Packages help keep your code unique from other people so you can resolve conflicts in your code if you have two or more classes with the same name.
9
10
#### Naming conventions
@@ -69,4 +71,4 @@ javac -d ./ @sources.txt
69
71
>Compiles all your java files to a folder called bin, in the current directory.
70
72
```
73
javac -d ./bin @sources.txt
-```
74
+```
0 commit comments