LaunchCodeEducation / skills-back-end-java

Unit 3 (Java Track) of the LC101 Curriculum, following fundamentals in Python
http://education.launchcode.org/skills-back-end-java/
Other
16 stars 31 forks source link

Java syntax issue, Unit 3 Chapter 3: Control Flow #23

Open bdaubry opened 5 years ago

bdaubry commented 5 years ago

In the elif/else if section, the following typo exists:

public class ElseIf {
    public static void main(String args[])

It should be (String[] args), as you are making an array of strings named args, correct?