Created
August 2, 2014 20:34
-
-
Save yask123/580f2e6fec256b5c3c51 to your computer and use it in GitHub Desktop.
This is a test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.company; | |
public class Main { | |
public static void main(String[] args) { | |
// write your code here | |
System.out.println("Hello world"); | |
int a []={1,2,3,4}; | |
for(int i=0;i<a.length;i++) | |
{ | |
System.out.println(a[i]); | |
System.out.println("What's this man?"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment