mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
38 lines
849 B
Swift
38 lines
849 B
Swift
// RUN: %target-run-simple-swift | FileCheck %s
|
|
|
|
// Create a new array
|
|
var arr = new Int[10]
|
|
for i in 0...10 { arr[i] = i % 7 + 2 }
|
|
replPrint(arr)
|
|
print("\n")
|
|
// CHECK: [2, 3, 4, 5, 6, 7, 8, 2, 3, 4]
|
|
|
|
// min and max element
|
|
println(minElement(arr))
|
|
// CHECK-NEXT: 2
|
|
println(maxElement(arr))
|
|
// CHECK-NEXT: 8
|
|
|
|
// min and max element of a slice
|
|
println(minElement(arr[1...5]))
|
|
// CHECK-NEXT: 3
|
|
println(maxElement(arr[1...5]))
|
|
// CHECK-NEXT: 6
|
|
|
|
// sorting
|
|
|
|
// FIXME: compilation fails without the temporary xxx
|
|
var xxx = sort(["apple", "Banana", "cherry"])
|
|
replPrint(xxx)
|
|
|
|
print("\n")
|
|
// CHECK-NEXT: ["Banana", "apple", "cherry"]
|
|
|
|
// FIXME: compilation fails without the temporary yyy
|
|
var yyy = sort(["apple", "Banana", "cherry"],
|
|
{ $0.lowercase > $1.lowercase })
|
|
replPrint(yyy)
|
|
|
|
print("\n")
|
|
// CHECK-NEXT: ["cherry", "Banana", "apple"]
|