mirror of
https://github.com/ziglang/zig.git
synced 2024-12-03 18:38:45 +00:00
10 lines
119 B
C
10 lines
119 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int a = 42;
|
||
|
|
||
|
const char* asStr() {
|
||
|
static char str[3];
|
||
|
sprintf(str, "%d", 42);
|
||
|
return str;
|
||
|
}
|