drepl
drepl copied to clipboard
A REPL for D
See error below: 
What would it take to make it work on Windows?
**Issue by [carljv](https://github.com/carljv)** _Wednesday May 25, 2016 at 23:58 GMT_ _Originally opened as https://github.com/drepl/drepl-old/issues/2_ --- I'm unable to get drepl to compile. I'm getting the following error: ``` Undefined symbols...
These are the logs, just going to paste them here. ``` spike@jacob-windows MINGW64 ~/Documents/github.com/spikespaz/search-deflector (master) $ dub fetch drepl Fetching drepl 0.2.0... Please note that you need to use `dub...
see below... ```powershell C:\Temp\Dub> dub fetch drepl Fetching drepl 0.2.1... Please note that you need to use `dub run ` or add it to dependencies of your package to actually...
It would be great to have a D Kernel for the Jupyter project (it's quite huge and basically every language is supported). Documentation: http://ipython.readthedocs.io/en/stable/development/index.html Overview of existing kernels: https://github.com/ipython/ipython/wiki/IPython-kernels-for-other-languages
``` D> int foo(int x){ | if( mistake == ) | ``` how do go up and correct the mistake?
``` λ languages/d/playground arf/dpl ✓ dub fetch drepl Fetching drepl 0.2.0... Please note that you need to use `dub run ` or add it to dependencies of your package to...
In drepl 0.2.1, this input is accepted: ``` Welcome to D REPL. D> import std; std D> real times_pi(real n) { | return n * PI; | } times_pi D>...
It should be possible to rebind previous declared symbols to something else. ``` d string foo = "bar"; ``` ``` d int foo = 3; ``` This requires to keep...