Explore
Connect
Documentation
Snippets
Log in
Sign up
1
2
3
4
5
6
7
8
9
10
interface
Interface {
int
foo();
}
class
Concretion
implements
Interface {
public
int
foo() {
return
1
;
}
}
Enter to Rename, Shift+Enter to Preview
Run