The code samples below only prints `2`, the result of the string interpolation - `let x = 2 print "Value of x is #{x}"` - `let x = 2 in "#{print 'x is #{x}'}"`
The code samples below only prints
2, the result of the string interpolationlet x = 2 print "Value of x is #{x}"let x = 2 in "#{print 'x is #{x}'}"