elan-language / Documentation

0 stars 0 forks source link

Allow comments to be indented #159

Closed richardpawson closed 7 months ago

richardpawson commented 7 months ago

Currently you can write:

main
  while true
    print
# outdented comment
    print 
  end while
end main

but not

main
  while true
    print
    # indented comment
    print 
  end while
end main

which is quite irritating as out