1

Has there been a change to this process now that the final release of Xcode is out? I've tried the following examples but it's just not working. It's like "pow" is not recognized. I get the error Use of unresolved identifier 'pow'. Thank you in advance!

Community
  • 1
  • 1
Joe Vargas
  • 65
  • 7

1 Answers1

2

You have to import the module where the function pow is defined:

import Foundation
Sulthan
  • 128,090
  • 22
  • 218
  • 270