Created
September 6, 2020 05:05
-
-
Save karanahuja-android/2d64bc2670c3572530efe0cd893a6280 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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