You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 28, 2023. It is now read-only.
fmt.Println("\nWelcome to the Bo!ler cli utility, We will initialize your basic project, \nbut to do so, you will help us with few answers to the following questions.")
// choose a language
fmt.Println("\nChoose a number which correspond to the language or framework you will be using:\n1.Ruby\n2.Ruby on Rails (RoR)")
fmt.Scan(&language)
// different language boilers
switchlanguage {
case1: //ruby is chosen
languages.RubyBoiler()
case2:
languages.RorBoiler()
default: // the chosen language is not yet supported
fori:=0; i<5; i++ {
fmt.Println("\nChoose a number which correspond to the language you will be using:\n1.Ruby\n2.Ruby on Rails")
fmt.Scan(&language)
iflanguage==1 {
break
}
}
language=0
fmt.Println("\nThe language you chose is not supported")