aboutsummaryrefslogtreecommitdiff
path: root/doc/langref/identifiers.zig
blob: a72b138ff31c10f9f8cef6b72ed02b511417863b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const @"identifier with spaces in it" = 0xff;
const @"1SmallStep4Man" = 112358;

const c = @import("std").c;
pub extern "c" fn @"error"() void;
pub extern "c" fn @"fstat$INODE64"(fd: c.fd_t, buf: *c.Stat) c_int;

const Color = enum {
    red,
    @"really red",
};
const color: Color = .@"really red";

// syntax