mirror of
https://github.com/encounter/object-testfiles.git
synced 2026-07-10 12:18:40 -07:00
12 lines
170 B
C
12 lines
170 B
C
#include <stdint.h>
|
|
|
|
void console_log(uint32_t value);
|
|
|
|
uint32_t global1 = 1;
|
|
uint32_t global2 = 2;
|
|
|
|
void print() {
|
|
console_log(global1);
|
|
console_log(global2);
|
|
}
|