@lisyarus@mastodon.gamedev.place
Post #4139543
2026-07-27 14:50 UTC
@witchgirls@woof.tech This is not allowed:
let x = 10 +
11 *
12
Only
let x = 10 + 11 * 12
So a newline effectively acts as a semicolon
Replies (1)
-
@witchgirls@woof.tech 2026-07-27 14:51
@lisyarus@mastodon.gamedev.place Oooh. What about something like: function_call( a, b, ) Still not allowed?