1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# C code to XCFramework Build with `build.sh` drag and drop into Xcode. In your swift file use: ```swift import MyMath struct ContentView: View { init() { print("30^2 = \(PowerOf2(30))") } } ```