Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class Bike{
  2. final void run(){
  3. System.out.println("running...");}
  4. }
  5. class Honda extends Bike{
  6. public static void main(String args[]){
  7. new Honda().run();
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement