dlang-community / drepl

A REPL for D
Boost Software License 1.0
78 stars 20 forks source link

Allow to mix statements and declarations in a single line #15

Open MartinNowak opened 10 years ago

MartinNowak commented 10 years ago

Proposed by @callumenator, https://github.com/MartinNowak/drepl/pull/14#commitcomment-5392071.

MartinNowak commented 10 years ago

If the declarations were parsed as DeclarationStatement, this should already work, but it doesn't. string foo(){ return "bar"; } writeln(foo());