frroossst / gsuneido

Go implementation of Suneido
MIT License
0 stars 0 forks source link

format strings #20

Open frroossst opened 1 year ago

frroossst commented 1 year ago

to make string formatting easier

foo = 123
bar = getSomeData()

res = f"{bar} isnt {foo}" // someData isnt 123 rather than res = bar $ 'isnt' $ foo

might be easier for larger string concats