package ts3 func boolToInt(boolean bool) (integer int) { if boolean { return 1 } return 0 }