diff options
author | Adam Bard <github@adambard.com> | 2020-01-27 21:26:24 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-27 21:26:24 -0800 |
commit | 6c91d55aba0e2dd66882ff4e3fd349becfe9b0fe (patch) | |
tree | 2034361ff59ee4768e19269e793f51a8bc29242d | |
parent | 94fc5ef3123d7eb6a506b5b691667d5de57ef3c9 (diff) | |
parent | 75320beb234e3321e76b04010b292e343cf26f6d (diff) |
Merge pull request #3824 from mark-summerfield/patch-1
Added missing import std.stdio...
-rw-r--r-- | d.html.markdown | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/d.html.markdown b/d.html.markdown index d2a57cae..93c08da2 100644 --- a/d.html.markdown +++ b/d.html.markdown @@ -212,6 +212,7 @@ found in the wonderful `std.algorithm` module! ```d import std.algorithm : map, filter, reduce; import std.range : iota; // builds an end-exclusive range +import std.stdio; void main() { // We want to print the sum of a list of squares of even ints |