https://github.com/lindt/docker-drepl
DRepl as Docker Image
https://github.com/lindt/docker-drepl
dlang docker drepl repl
Last synced: 5 months ago
JSON representation
DRepl as Docker Image
- Host: GitHub
- URL: https://github.com/lindt/docker-drepl
- Owner: lindt
- Created: 2017-05-08T20:22:55.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-22T16:10:33.000Z (about 8 years ago)
- Last Synced: 2024-12-31T21:12:14.504Z (6 months ago)
- Topics: dlang, docker, drepl, repl
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-drepl
[](https://hub.docker.com/r/dlanguage/drepl/)
[](https://hub.docker.com/r/dlanguage/drepl/)
[](https://hub.docker.com/r/dlanguage/drepl/)DRepl as Docker Image
## Usage
```
docker run -ti dlanguage/drepl
```This will start a Repl for D.
Once started, output will be similar to the following:```
$ docker run -ti dlanguage/drepl
Welcome to D REPL.
D>
```Use it like:
```
D> auto a = 23;
a
D> import std.stdio;
std
D> writefln("a is %s", a);
a is 23
```
## References- https://github.com/MartinNowak/drepl