func testWeekend()

in SwiftlintTemplate/ViewController.swift [213:233]


        func testWeekend(dayOfWeek: Int) -> String {
            let dayOfWeek = 5
            switch dayOfWeek {
                case 1:
                    print("Monday - not the weekend")
                case 2:
                    print("Tuesday - not the weekend")
                case 3:
                    print("Wednesday - not the weekend")
                case 4:
                    print("Thursday - not the weekend")
                case 5:
                    print("Friday - not the weekend")
                case 6:
                    print("Weekend")
                case 7:
                    print("Weekend")
                default:
                    print("Invalid day")
            }
        }