Skip to content

Instantly share code, notes, and snippets.

@yask123
Created August 2, 2014 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yask123/580f2e6fec256b5c3c51 to your computer and use it in GitHub Desktop.
Save yask123/580f2e6fec256b5c3c51 to your computer and use it in GitHub Desktop.
This is a test
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