Closed
Description
I really love the dart language and its nice syntax. My only issue with it is the semicolon. Why can't I just write:
print("hello world")
Instead of:
print("hello world");
This really decreases the productivity. I wish the language could implement automatic semicolon insertion like JavaScript or something like that because it is just annoying when adding it manually and wastes a lot of time when writing the code.