Embarcadero variant

This commit is contained in:
Ilia Motornyi
2021-10-12 18:09:41 +03:00
parent 8d02221567
commit 4691658a83
13 changed files with 386 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!");
}