Skip to content

Instantly share code, notes, and snippets.

@affandes
Created January 2, 2024 02:04
Show Gist options
  • Save affandes/bf056ab4c73f962677b87dbc5954042c to your computer and use it in GitHub Desktop.
Save affandes/bf056ab4c73f962677b87dbc5954042c to your computer and use it in GitHub Desktop.
Contoh class Mahasiswa yang digunakan pada Stack
public class Mahasiswa {
public String nama;
public String nim;
public Mahasiswa(String nama, String nim) {
this.nama = nama;
this.nim = nim;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment