drepl icon indicating copy to clipboard operation
drepl copied to clipboard

A REPL for D

Results 26 drepl issues
Sort by recently updated
recently updated
newest added

Running `dub test` on a dub package that depends on drepl 0.2.1using dmd 2.082.0 results in this: ``` ./../../.dub/packages/drepl-0.2.1/drepl/src/drepl/interpreter.d(128,16): Error: Comparison between different enumeration types Kind and Kind; If this...

Allow to fetch and use dub packages.

enhancement

```d enum nestedStmtTmplt = q"SQL SELECT COUNT(*) cnt, tags1.name, tags1.id FROM track_tags track_tags1 JOIN tags tags1 ON tags1.id = track_tags1.tag_id GROUP BY track_tags1.tag_id ORDER BY cnt DESC LIMIT -1; SQL";...

I just quickly wanted to find the smallest file in a directory with this code: ``` d D> size_t minSize = size_t.max; string minName = "invalid"; foreach (file; dirEntries(getcwd, SpanMode.breadth))...

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

forgetting a semi-colon is quite easy - maybe we should visually show the number of open scopes, s.t. this has visual feedback: ``` ./drepl D> int b = 2 D>...

How awesome would it be if this had auto-complete... :)

enhancement

For the website and the CLI.

enhancement

**Issue by [wilzbach](https://github.com/wilzbach)** _Wednesday May 25, 2016 at 19:15 GMT_ _Originally opened as https://github.com/drepl/drepl-old/issues/1_ --- 1) [drepl](https://github.com/MartinNowak/drepl) - uses libdparse to parse the structure, pipes everything to a temporary file...

It's a very small library, so porting this will make a useful D library and gets rid of an external dependency.

enhancement