mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
276 B
Swift
13 lines
276 B
Swift
// RUN: %target-run-simple-swift 2>&1 | FileCheck %s
|
|
// REQUIRES: executable_test
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
|
|
// CHECK: 1 is the loneliest number that you'll ever do
|
|
NSLog(
|
|
"%@ is the loneliest number that you'll ever %@",
|
|
NSNumber(integer: 1), "do"
|
|
)
|