Advertisement
rooster5105

Mapper.java

Oct 29th, 2011
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. package com.kfgeeks.java.Mapper;
  2. import java.util.*;
  3.  
  4.  
  5. public class Mapper {
  6.     static Scanner ReadUserInput = new Scanner(System.in);
  7.    
  8.     /**
  9.      * @param args
  10.      */
  11.     public static void main(String[] args) {
  12.         //I know...Looks stupid, but we're gonna make sure java works first  =P
  13.         //(Besides....Saying "Hello" is always more interesting than "Initializing Java..." Right?)
  14.         System.out.println("Hello Java!");
  15.         for (int i=0; i<10; i++){
  16.             System.out.println(i);
  17.             }
  18.         MapBuilder.run(40, 160);
  19.            
  20.         }
  21.     }
  22.        
  23.    
  24.  
  25.  
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement