Skip to content

Fixed multiline string code generation

Pre-release
Pre-release
Compare
Choose a tag to compare
@sigmasoldi3r sigmasoldi3r released this 27 Sep 09:11
· 19 commits to master since this release
  • Fixed a bug that was making the string generated not valid for Lua.
(println! "This is
Fine in
Charon")

But in Lua:

print("Not
valid")
-- Instead now generates:
print("Is valid\nYes")