Skip to content

Instantly share code, notes, and snippets.

@kishorekumar080297
Last active September 11, 2018 10:32
Show Gist options
  • Save kishorekumar080297/d9b834b71c1a2a58be9a753f14906071 to your computer and use it in GitHub Desktop.
Save kishorekumar080297/d9b834b71c1a2a58be9a753f14906071 to your computer and use it in GitHub Desktop.
//Create by Kishore Kumar G on 11/09/2018 (https://github.com/kishorekumar080297)
void main() {
var score = highScore();
print('My High Score is $score');
var msg = helloWorld();
print('Greetings: $msg');
}
String highScore() {
return '300pts';
}
String helloWorld() {
return 'Hello World!';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment