diff options
| author | physick <mynameisgennadiy@vk.com> | 2026-07-22 14:25:41 +0500 |
|---|---|---|
| committer | physick <mynameisgennadiy@vk.com> | 2026-07-22 14:25:41 +0500 |
| commit | 4485888ed9f1b7cb7d7a91f64044f3821931efac (patch) | |
| tree | de2d7ee179fdf8c1d387733bbff6d5040ce6fd4c /clox/src/main.c | |
| parent | ae2ed5d7a3d0b6981e9560ff76141f51a0656294 (diff) | |
c impl init
Diffstat (limited to 'clox/src/main.c')
| -rw-r--r-- | clox/src/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clox/src/main.c b/clox/src/main.c new file mode 100644 index 0000000..535b23f --- /dev/null +++ b/clox/src/main.c @@ -0,0 +1,5 @@ +#include <stdio.h> + +int main(void) { + printf("Hello, clox!\n"); +} |
