Created
May 5, 2019 16:04
-
-
Save khadkarajesh/c41bb9de2e0beefc33b440a7afbc90ab 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
fun main() { | |
//Anonymous | |
print("Hey how can i help you?") | |
// You | |
print("I want to be professional software engineer? but How") | |
//Anonymous | |
enrollIncwellBootcamp() | |
//You | |
print("Thanks I love you") | |
} | |
fun enrollIncwellBootcamp() { | |
var startMonth = 1 | |
var endMonth = 3 | |
for (i in startMonth..endMonth) { | |
haveOneOnOneMentorShip() | |
learnTechnicalSkills() | |
buildPortfolio() | |
preparationForInterview() | |
learnBestPractices() | |
contributeInOpenSourceProject() | |
learnSoftwareDevelopmentProcess() | |
} | |
} | |
fun haveOneOnOneMentorShip() {} | |
fun learnTechnicalSkills() {} | |
fun buildPortfolio() {} | |
fun preparationForInterview() {} | |
fun learnBestPractices() {} | |
fun contributeInOpenSourceProject() {} | |
fun learnSoftwareDevelopmentProcess() {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment