1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-09 16:26:53 +02:00

Change name of java file to be a camelcase class name

This commit is contained in:
Adam
2013-07-01 11:03:36 -07:00
parent 83900dc504
commit e5d2150714

View File

@@ -6,7 +6,7 @@ author: Jake Prather
author_url: http://github.com/JakeHP author_url: http://github.com/JakeHP
filename: learnjava.java filename: LearnJava.java
--- ---
@@ -24,9 +24,9 @@ import java.util.ArrayList;
// Import all classes inside of java.lang package // Import all classes inside of java.lang package
import java.security.*; import java.security.*;
// Inside of the learnjava class, is your program's // Inside of the LearnJava class, is your program's
// starting point. The main method. // starting point. The main method.
public class learnjava public class LearnJava
{ {
//main method //main method
public static void main (String[] args) public static void main (String[] args)