Well i see this is valid swift code:
var R, G, B, opacity: Double
Since this code will run execute with no problems, Say i wanted to set all the above variables to 0.0, How would it be declared and initialized ? because let R, G, B, opacity: Double = 0.0
throws a Type annotation missing in pattern error
I know in Python
a = b = c = d = e = g = h = i = j = True
or Javascript
var a = b = c = d = e = g = h = i = j = true