Skip to content

Instantly share code, notes, and snippets.

@cyrilletuzi
Created January 29, 2017 10:18
Show Gist options
  • Save cyrilletuzi/ec533de9786216ab87305972e8bfd28f to your computer and use it in GitHub Desktop.
Save cyrilletuzi/ec533de9786216ab87305972e8bfd28f to your computer and use it in GitHub Desktop.
interface Movable {
void Move();
}
public class Vehicle: Movable {
public void Move() {}
}
public abstract class Test {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment