Skip to content

Instantly share code, notes, and snippets.

@dsp
Created January 23, 2015 18:46
Show Gist options
  • Save dsp/c3acafcbd748353f75b6 to your computer and use it in GitHub Desktop.
Save dsp/c3acafcbd748353f75b6 to your computer and use it in GitHub Desktop.
import std.stdio;
int main(string[] args) {
auto arr = ["apple", "bananas", "cherries"];
foreach (auto e; arr) {
writefln("got %s", e);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment