mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
10 lines
110 B
C
10 lines
110 B
C
#include <stdint.h>
|
|
|
|
int32_t fortytwo() {
|
|
return 42;
|
|
}
|
|
|
|
int32_t mul(int32_t a, int32_t b) {
|
|
return a * b;
|
|
}
|