1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-02-13 13:28:27 +02:00
2019-04-29 05:15:40 +10:00

22 lines
282 B
Plaintext

module foo;
import std.stdio;
class C {}
/* comment1 */
/+ comment2 +/
@(1)
@nogc
int main() {
writeln(__FILE__);
auto s = r"hi"d;
auto w = `hi`w;
auto q = q{
auto w = `hi`w;
};
enum f = 1.2fi;
enum d = 0x1.FFFFFFFFFFFFFp1023;
return 0;
}