Advertisement
ds84182

Untitled

Feb 13th, 2014
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. import java.io.*;
  2. import cc.*;
  3. class MyFirstProgram {
  4.     /** Print a hello message */
  5.     public static void main(String[] args) {
  6.         int a = getNumber();
  7.         System.out.println("Hello, world!");
  8.         System.out.println(Computer.isTurtle());
  9.         System.out.println(a+a);
  10.     }
  11.    
  12.     public static int getNumber()
  13.     {
  14.         return 6;
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement