Skip to content

Instantly share code, notes, and snippets.

View anantakrroy's full-sized avatar
🎯
Focusing

Ananta Kumar Roy anantakrroy

🎯
Focusing
View GitHub Profile
@anantakrroy
anantakrroy / firstbookmarklet.markdown
Created September 14, 2019 12:06
FirstBookmarklet
@anantakrroy
anantakrroy / main.dart
Created April 2, 2019 05:40
Fundamentals of Dart
// INHERITANCE
// void main() {
// Lizard liz = Lizard();
// // Cat kitty = Cat();
// // kitty.test();
// liz.test(); // Testing in Lizard, Animal, and Reptile
// liz.crawl(); // Now we can call crawl() from Reptile class
// }