#!/usr/bin/env swift; import Foundation import Utils // Begin Main let x:Int = Int(CommandLine.arguments[1]) ?? 0 print("Start...") if x > 10 { print("Greater than 10") } else { print("Less than or equal to 10") } print("Finish...") exit(EXIT_SUCCESS)