1
0
Fork 0
mirror of https://github.com/luau-lang/luau.git synced 2025-04-10 22:00:54 +01:00
Commit graph

2 commits

Author SHA1 Message Date
ramdoys
decbe0d9a9 fix: update applicable .lua files to .luau 2024-12-09 17:55:10 -05:00
boyned//Kampfkarren
da9d8e8c60
String interpolation ()
Implements the string interpolation RFC ().

Adds the string interpolation as per the RFC.

```lua
local name = "world"
print(`Hello {name}!`) -- Hello world!
```

Co-authored-by: Arseny Kapoulkine <arseny.kapoulkine@gmail.com>
Co-authored-by: Alexander McCord <11488393+alexmccord@users.noreply.github.com>
2022-08-24 12:01:00 -07:00