Swift Is Case Sensitive So A And A Are

[Solved] Swift Is Case Sensitive So A And A Are | Swift - Code Explorer | yomemimo.com
Question : Swift is case-sensitive. So A and a are different variables

Answered by : samer-saeid

var A = 5
var a = 55
print(A) // 5
print(a) // 55

Source : | Last Update : Tue, 21 Jun 22

Answers related to swift is case sensitive so a and a are different variables

Code Explorer Popular Question For Swift