mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
25 lines
537 B
Plaintext
25 lines
537 B
Plaintext
// #file: file1.c3
|
|
module test;
|
|
|
|
public char a = ' ';
|
|
public char b = '\r';
|
|
public char c = '\t';
|
|
public char d = '\n';
|
|
public char e = '\0';
|
|
public char f = '\'';
|
|
public char g = '"';
|
|
public char h = '\\';
|
|
public char i = '\e';
|
|
|
|
// #expect: test.ll
|
|
|
|
@test.a = global i8 32, align 1
|
|
@test.b = global i8 13, align 1
|
|
@test.c = global i8 9, align 1
|
|
@test.d = global i8 10, align 1
|
|
@test.e = global i8 0, align 1
|
|
@test.f = global i8 39, align 1
|
|
@test.g = global i8 34, align 1
|
|
@test.h = global i8 92, align 1
|
|
@test.i = global i8 27, align 1
|