mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
10 lines
153 B
Swift
10 lines
153 B
Swift
// RUN: %target-run-simple-swift | FileCheck %s
|
|
|
|
import Darwin
|
|
|
|
// CHECK: Hello world
|
|
puts("Hello world")
|
|
|
|
// CHECK: 4294967295
|
|
println("\(UINT32_MAX)")
|