Created
September 12, 2020 05:00
-
-
Save karanahuja-android/e7e4bcaf2d7aa48d56da9a467dd79027 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
import 'dart:io'; | |
class harryclass | |
{ | |
dance () | |
{ | |
print ("dance"); | |
} | |
} | |
main () | |
{ | |
harryclass harry = harryclass (); | |
harry.dance (); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment