[파일명: testSort.boo]------------------------------------------------ import System import System.Collections def printArray(arr as Array): Console.Write("[") for i in range(0, len(arr) - 1): s = "${arr[i]}, " Console.Write(s) if len(arr) > 0: Console.Write("{0}", "${arr[len(arr) - 1]}") Console.WriteLine("]") arr = array(String, argv.Length) for i in range(0, argv.Length): arr[i] = argv[i] Array...