Explore Connect Documentation
Snippets

Computing with Data

elgeish
331.4K views
GitHub

Open Source Your Knowledge, Become a Contributor

Technology knowledge has to be shared and made accessible for free. Join the movement.

Create Content
Previous: Inheritance Next: Generics

Interfaces

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
Suggested playgrounds

Correct the code to display 'Hello World!'

By
SJTECollege
1,473
77

Python Hello World program

By
SJTECollege
993
58

Tuesday Night Python - Weekly Challenge 001

By
4candles
273
9

Apprendre Python dans le secondaire

By
CarrDav.ous
61.6K
183
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content