Fixed multiline string code generation
Pre-release
Pre-release
·
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")