TI MSP CGT added

This commit is contained in:
Ilia Motornyi
2021-10-12 18:37:48 +03:00
parent f3e0a58d96
commit 45f06715d2
13 changed files with 368 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#include <stdio.h>
#pragma message ("Compile C")
int getInt();
long long fn() {
return 3ll;
}
void fan(unsigned int x) {
const int res = x == 123;
if (x == 456) {}
}
void c_main() {
puts("Hello, World from C!");
}