Skip to content

Instantly share code, notes, and snippets.

@maurcarvalho
Created January 3, 2014 13:45
Show Gist options
  • Save maurcarvalho/8238098 to your computer and use it in GitHub Desktop.
Save maurcarvalho/8238098 to your computer and use it in GitHub Desktop.
Interface Veiculo - Array Interface
public interface Veiculo {
void andar();
void ligar();
void desligar();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment