#!/usr/bin/env swift; import Foundation import Utils // Begin Main print("Number of arguments: " + String((CommandLine.arguments.count - 1))) print("Program Name: " + CommandLine.arguments[0]) print("Arg 1: " + CommandLine.arguments[1]) print("Arg 2: " + CommandLine.arguments[2]) print("Arg 3: " + CommandLine.arguments[3]) print("Arg 4: " + CommandLine.arguments[4]) exit(EXIT_SUCCESS)