mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
8 lines
105 B
Swift
8 lines
105 B
Swift
import Foundation
|
|
|
|
extension String {
|
|
func printHelloWorld() {
|
|
print("Hello World!")
|
|
}
|
|
}
|