Skip to content

Instantly share code, notes, and snippets.

@muthu1809
Created June 4, 2024 05:59
Show Gist options
  • Save muthu1809/5ce11712c4d1409890b6c762a736aa46 to your computer and use it in GitHub Desktop.
Save muthu1809/5ce11712c4d1409890b6c762a736aa46 to your computer and use it in GitHub Desktop.
public class Rohit implements Captain
{
public static void main(String[] args)
{
//Rohit rohit = new Rohit();
Captain rohit = new Rohit();
//rohit.shopping();
//rohit.watch_movies();
rohit.toss();
rohit.select_members();
}
public void shopping()
{
}
public void watch_movies()
{
}
public void toss()
{
}
public void select_members()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment