Skip to content

Instantly share code, notes, and snippets.

@connor-davis
Created August 2, 2022 03:40
Show Gist options
  • Save connor-davis/bd89184fd15aa910e44ddbcec60a1f85 to your computer and use it in GitHub Desktop.
Save connor-davis/bd89184fd15aa910e44ddbcec60a1f85 to your computer and use it in GitHub Desktop.
For DebugNine2 For DebugNine2
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