Open cvauclair opened 3 years ago
The Mesh language should support format strings to make creating strings with values of non-string types easier.
Use the same syntax as Python. E.g.:
let x = 2; let y = true; f"x is {x} and y is {y}"
Should return the string "x is 2 and y is true"
"x is 2 and y is true"
Description
The Mesh language should support format strings to make creating strings with values of non-string types easier.
Proposed approach
Use the same syntax as Python. E.g.:
Should return the string
"x is 2 and y is true"