Skip to content

Instantly share code, notes, and snippets.

@khadkarajesh
Created May 5, 2019 16:04
Show Gist options
  • Save khadkarajesh/c41bb9de2e0beefc33b440a7afbc90ab to your computer and use it in GitHub Desktop.
Save khadkarajesh/c41bb9de2e0beefc33b440a7afbc90ab to your computer and use it in GitHub Desktop.
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