mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 12:54:00 -05:00
* Add support for circle-lang (closes #1845) * Add circle-128 version. * Support keywords starting with @ (thanks Matt!)
8 lines
128 B
C++
8 lines
128 B
C++
#include <cstdio>
|
|
|
|
int main(int argc, char** argv) {
|
|
printf("Hello world\n");
|
|
@meta printf("Hello circle\n");
|
|
return 0;
|
|
}
|