Skip to content

Instantly share code, notes, and snippets.

View OsamaAldawoody's full-sized avatar

Osama Ashraf OsamaAldawoody

  • Egypt
View GitHub Profile
@OsamaAldawoody
OsamaAldawoody / procedural || data structure - clean code book
Last active December 22, 2020 06:40
procedural || data structure - clean code book
void main() {
Square s = Square();
s.width = 10;
s.topLeft = Point(0,0);
print(Geometery.area(s));
print(Geometery.perimeter(s));
}
class Point{