Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 334 Bytes

TODO.md

File metadata and controls

36 lines (24 loc) · 334 Bytes

TODO

  • Better handling of '}', avoid new lines

Scoped blocks

{
  scopedStmtList
}

should be parsed with the do notation like:

do
  scopedStmtList

Intersperse comments

if /* make it better */ true { }

Will generate:

if
  # make it better
  true

which currently isn't valid igo.