Skip to content

Instantly share code, notes, and snippets.

@BrunohenriqueApp
Created October 1, 2015 00:43
Show Gist options
  • Save BrunohenriqueApp/76565c7cb3d6d63b362d to your computer and use it in GitHub Desktop.
Save BrunohenriqueApp/76565c7cb3d6d63b362d to your computer and use it in GitHub Desktop.
Java
public class test
public static void main (String [] args){
System.out.println ("Ola! Mundo. ");
}
@leonardomaier
Copy link

leonardomaier commented Sep 22, 2016

This code does not will compile

The correct is:

`

public class Teste {
public static void main (String[] args) {
System.out.println ("Ola mundo!");
}
}

`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment