Ellery Newcomer Sat, 27 Mar 2010 08:15:07 -0700
Is this program expected to terminate? D 2.042 module test;
import std.regex; import std.stdio; void main(){ foreach(m; match("hello world",`.*`)){ writefln("%s[%s]%s",m.pre,m.hit,m.post); } }