Open frroossst opened 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
res = f"{bar} isnt {foo}" // someData isnt 123
res = bar $ 'isnt' $ foo
might be easier for larger string concats
to make string formatting easier
res = f"{bar} isnt {foo}" // someData isnt 123
rather thanres = bar $ 'isnt' $ foo
might be easier for larger string concats