Created
August 2, 2022 03:40
-
-
Save connor-davis/bd89184fd15aa910e44ddbcec60a1f85 to your computer and use it in GitHub Desktop.
For DebugNine2
For DebugNine2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Movie { | |
private String name; | |
private int year; | |
public Movie(String name, int year) { | |
this.name = name; | |
this.year = year; | |
} | |
public String getName() { | |
return name; | |
} | |
public int getYear() { | |
return year; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment