Skip to content

Instantly share code, notes, and snippets.

@roktas
Created May 10, 2010 02:30
Show Gist options
  • Save roktas/395600 to your computer and use it in GitHub Desktop.
Save roktas/395600 to your computer and use it in GitHub Desktop.
public class Robot {
int boy;
int kilo;
public Robot(int b, int k) {
boy = b;
kilo = k;
}
public void oyna() {
System.out.println("boyum: " + boy + "\nkilom: " + kilo);
}
public static void main(String[] args) {
Robot r2d2 = new Robot(180, 75);
r2d2.oyna();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment