6 lines
123 B
Swift
6 lines
123 B
Swift
|
|
import Foundation
|
||
|
|
|
||
|
|
let hello = "Hello, World!"
|
||
|
|
let fromC = strdup(hello)
|
||
|
|
let backToSwiftString = String.fromCString(fromC)
|