...ing logging 4.0

はてなブログに移行しました。D言語の話とかいろいろ。

2011-12-17から1日間の記事一覧

愚直に書くのが最速だった

final class Lexer { private const string source; this(in string source) { this.source = source; } const(string)[] lex() const { static string[] f(string line) { auto app2 = appender!string(); app2.put(line); app2.put(","); app2.put(TOKEN_E…