HashLDash/Photon

Implement explicit type conversion functions

Closed this issue · 0 comments

Photon only converts types implicitly. We should also support calling functions explicitly. It will be possible to convert types inside an expression without needing to use a variable instead.

a = 5 + int("1")
print(a)