Composition
x = math.sin(degrees / 360.0 * 2 * math.pi)x = math.exp(math.log(x+1))hours = 2 # correct
minutes = hours * 60 # correct
hours * 2 = minutes # wrong SyntaxError: can't assign to operatorLast updated
x = math.sin(degrees / 360.0 * 2 * math.pi)x = math.exp(math.log(x+1))hours = 2 # correct
minutes = hours * 60 # correct
hours * 2 = minutes # wrong SyntaxError: can't assign to operatorLast updated