Skip to content

Instantly share code, notes, and snippets.

@hausen
Created April 14, 2012 15:17
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 hausen/2385165 to your computer and use it in GitHub Desktop.
Save hausen/2385165 to your computer and use it in GitHub Desktop.
UFABC - aula PI funções exemplo 1
package funcoes;
public class PoemaDecorado1
{
public static void main(String args[])
{
System.out.println("Minha terra tem palmeiras");
System.out.println("=========================");
System.out.println("Onde canta o sabiá");
System.out.println("=========================");
System.out.println("As aves que aqui gorjeiam");
System.out.println("=========================");
System.out.println("Não gorjeiam como lá");
System.out.println("=========================");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment