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