10 lines
155 B
Swift
10 lines
155 B
Swift
public struct main {
|
|
public private(set) var text = "Hello, World!"
|
|
|
|
public init() {
|
|
if (true) {
|
|
print(text)
|
|
}
|
|
}
|
|
}
|