In the recent update to GameMaker 2023.4.0.84 released about three weeks ago, template strings were added as a new feature, allowing you to replace the clunky concatenation of "Hello my name is " + myName + "!" with an inline variable instead.
When I try the following code, I get an error from GMLive in the Output window "Expected a value, got dollar_sign"
Example Code:
var fruit = "apple"
var guess = $"My guess is {fruit}"