D for Android beta
thinwybk via Digitalmars-d-announce
digitalmars-d-announce at puremagic.com
Sun Sep 10 06:11:45 PDT 2017
On Friday, 8 September 2017 at 11:52:48 UTC, Joakim wrote:
> rdmd and dub are now bundled with the native ldc package for
> Termux, so you can easily write small scripts in D on your
> phone or build and run tools like DScanner from the D package
> repository at code.dlang.org.
Cool:
pkg search ldc
pkg install ldc
plk install vim
vim app.d
import std.stdio;
void main()
{
writeln("hello d on termux");
}
(volume button up+q)
(ESC button)
:w
:q
ldc2 app.d
./app
hello d on termux
More information about the Digitalmars-d-announce
mailing list