Skip to content

Instantly share code, notes, and snippets.

@geektutor
Created April 17, 2020 14:20
Show Gist options
  • Save geektutor/14c852ed9c987443297837dbd6462748 to your computer and use it in GitHub Desktop.
Save geektutor/14c852ed9c987443297837dbd6462748 to your computer and use it in GitHub Desktop.
void main() {
Human sodiq = new Human(19);
sodiq.talk('I love you');
}
class Human {
double height;
int age = 0;
Human(double startingHeight) {
height = startingHeight;
}
void talk(String whatToSay){
print(whatToSay);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment