iOS Swift - Local Data Persistence
Find the bug in this code:
let defaults = UserDefaults.standard defaults.set(3.14, forKey: "pi") let piValue = defaults.double(forKey: "pi") print(piValue)
