// // A bare-bones Swift standard library // precedencegroup AssignmentPrecedence { assignment: true } public enum Optional { case none case some(Wrapped) } public typealias IntegerLiteralType = Int public typealias _MaxBuiltinIntegerType = Builtin.IntLiteral public typealias _MaxBuiltinFloatType = Builtin.FPIEEE80 public protocol _ExpressibleByBuiltinIntegerLiteral { init(_builtinIntegerLiteral value: _MaxBuiltinIntegerType) } public protocol _ExpressibleByBuiltinFloatLiteral { init(_builtinFloatLiteral value: _MaxBuiltinFloatType) } public protocol ExpressibleByIntegerLiteral { associatedtype IntegerLiteralType : _ExpressibleByBuiltinIntegerLiteral init(integerLiteral value: IntegerLiteralType) } public protocol ExpressibleByFloatLiteral { associatedtype FloatLiteralType : _ExpressibleByBuiltinFloatLiteral init(floatLiteral value: FloatLiteralType) } public struct Int : _ExpressibleByBuiltinIntegerLiteral, ExpressibleByIntegerLiteral { var value: Builtin.Word public init() { self = 0 } public init(_builtinIntegerLiteral value: _MaxBuiltinIntegerType) { let builtinValue = Builtin.s_to_s_checked_trunc_IntLiteral_Word(value).0 self.value = builtinValue } public init(integerLiteral value: IntegerLiteralType) { self = value } } public struct Int32 : _ExpressibleByBuiltinIntegerLiteral, ExpressibleByIntegerLiteral { var value: Builtin.Int32 public init() { self.init(integerLiteral: 0) } public init(_builtinIntegerLiteral value: _MaxBuiltinIntegerType) { let builtinValue = Builtin.s_to_s_checked_trunc_IntLiteral_Int32(value).0 self.value = builtinValue } public init(integerLiteral value: IntegerLiteralType) { let builtinValue = Builtin.truncOrBitCast_Word_Int32(value.value) self.value = builtinValue } } public struct Int8 : _ExpressibleByBuiltinIntegerLiteral, ExpressibleByIntegerLiteral { var value: Builtin.Int8 public init() { self.init(integerLiteral: 0) } public init(_builtinIntegerLiteral value: _MaxBuiltinIntegerType) { let builtinValue = Builtin.s_to_s_checked_trunc_IntLiteral_Int8(value).0 self.value = builtinValue } public init(integerLiteral value: IntegerLiteralType) { let builtinValue = Builtin.truncOrBitCast_Word_Int8(value.value) self.value = builtinValue } } public struct UnsafeMutablePointer { var value: Builtin.RawPointer public init() { self.value = Builtin.inttoptr_Word(0.value) } } public typealias CInt = Int32 public typealias CChar = Int8 @_extern(c, "putchar") public func putchar(_: CChar) public func printHello() { putchar(0x48) putchar(0x65) putchar(0x6c) putchar(0x6c) putchar(0x6f) putchar(0x0a) } //public var C_ARGC: CInt = CInt() //public var C_ARGV: UnsafeMutablePointer> = UnsafeMutablePointer()