Last active
February 21, 2019 23:43
-
-
Save Superstar64/8b896312ebe1a6e6240b1cba8aed2488 to your computer and use it in GitHub Desktop.
D in makefiles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ONESHELL: | |
SHELL = rdmd | |
.SHELLFLAGS = --eval | |
squares.txt: | |
auto squares = sequence!("n*n").take(100); | |
std.file.write("$@",squares.to!string); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment