File: d.actual

package info (click to toggle)
golang-github-alecthomas-chroma 0.10.0-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 6,652 kB
  • sloc: python: 426; javascript: 79; makefile: 34; sh: 32
file content (21 lines) | stat: -rw-r--r-- 282 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
}