Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lindt/docker-drepl
DRepl as Docker Image
https://github.com/lindt/docker-drepl
dlang docker drepl repl
Last synced: 2 days 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-22T16:10:33.000Z (over 7 years ago)
- Last Synced: 2024-11-08T11:56:34.376Z (about 2 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
[![Docker pulls](https://img.shields.io/docker/pulls/dlanguage/drepl.svg)](https://hub.docker.com/r/dlanguage/drepl/)
[![Docker Build](https://img.shields.io/docker/automated/dlanguage/drepl.svg)](https://hub.docker.com/r/dlanguage/drepl/)
[![Latest Tag](https://img.shields.io/github/tag/lindt/docker-drepl.svg)](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