Created
August 2, 2017 21:38
-
-
Save 10537/b41aa56b700ff2ddb746836a4cb8d6b1 to your computer and use it in GitHub Desktop.
Become a Kotlin Programmer Part 6 - Main Call
This file contains hidden or 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
fun main(args: Array<String>) { | |
val Player = Human("Iskender","Black",1.70, 30) | |
Player.Walk() | |
Player.Talk() | |
Player.Run() | |
Player.Eat() | |
Player.Learn("Meteor Punch Combo") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment