Skip to content

Instantly share code, notes, and snippets.

@karanahuja-android
Created September 6, 2020 05:05
Show Gist options
  • Save karanahuja-android/2d64bc2670c3572530efe0cd893a6280 to your computer and use it in GitHub Desktop.
Save karanahuja-android/2d64bc2670c3572530efe0cd893a6280 to your computer and use it in GitHub Desktop.
takeoff ()
{
print ("take off");
}
fly ()
{
takeoff ();
print ("flying");
}
main ()
{
print ("hello world");
fly ();
print ("goodbye world");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment