1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 14:56:54 +02:00
This commit is contained in:
Jake Prather
2013-07-01 18:08:48 -05:00
parent bd7390d799
commit d22f6fc287

View File

@@ -21,7 +21,7 @@ Multi-line comments look like this.
// Import ArrayList class inside of the java.util package
import java.util.ArrayList;
// Import all classes inside of java.lang package
// Import all classes inside of java.security package
import java.security.*;
// Each .java file contains one public class, with the same name as the file.