Guest User

Untitled

a guest
May 20th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. public class cow            // did not capitalise class name
  2. {
  3.     public String spot_color;   // no camelcase; I thought underscores looked cooler
  4.     public int age;         // all public fields
  5.  
  6.     // I didn't comment anything! =D These comments just explain my muckups!
  7.     public String get_spot_color()
  8.     {
  9.         return spot_color;
  10.     }
  11.  
  12.     public void set_spot_color(String sc)
  13.     {
  14.         spot_color = sc;
  15.     }
  16.  
  17.     public static void main(String [] args)     // I thought [] looked better centred
  18.     {
  19.        
  20.     }
  21. }
Add Comment
Please, Sign In to add comment