repos / gbc

GBC - Go B Compiler
git clone https://github.com/xplshn/gbc.git

gbc / lib / b
xplshn  ·  2025-08-13

ilasm-mono.b

B
1putchar(x) {
2    __asm__(
3        "ldarg.0",
4        "conv.u2",
5        "call void class [mscorlib]System.Console::Write(char)"
6    );
7}