Skip to content

Instantly share code, notes, and snippets.

@FabiolaRamirez
Created May 17, 2019 19:21
Show Gist options
  • Select an option

  • Save FabiolaRamirez/393b3b279c15c3d1755c93010f50e20f to your computer and use it in GitHub Desktop.

Select an option

Save FabiolaRamirez/393b3b279c15c3d1755c93010f50e20f to your computer and use it in GitHub Desktop.
func getSegmentValue(segmentNumber: Int) -> String {
switch segmentNumber {
case 1:
return "New"
case 2:
return "Uninvolved"
case 3:
return "Constrained"
case 4:
return "Unqualified"
case 5:
return "Aspirational"
case 6:
return "Disciplined"
default:
return "None"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment