mirror of
https://github.com/aljazceru/breez-sdk-docs.git
synced 2025-12-17 22:04:21 +01:00
14 lines
316 B
Swift
14 lines
316 B
Swift
// The Swift Programming Language
|
|
// https://docs.swift.org/swift-book
|
|
|
|
print("Hello, tester!")
|
|
if let sdk = try gettingStarted(){
|
|
if let fiatRates = getCurrentRates(sdk: sdk) {
|
|
for rate in fiatRates {
|
|
print("rate \(rate)\n")
|
|
print("------------------------")
|
|
}
|
|
}
|
|
}
|
|
|