Skip to content

Instantly share code, notes, and snippets.

@basgys
Created September 23, 2011 21:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save basgys/1238502 to your computer and use it in GitHub Desktop.
Save basgys/1238502 to your computer and use it in GitHub Desktop.
Main class
package ch.hegarc.ig.person;
import ch.hegarc.ig.person.business.Person;
public class Main {
public static void main(String[] args) {
Person p1 = new Person(1, "Bastien", "Gysler");
p1.print();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment