Added 'C_C++/hw.c'

This commit is contained in:
anon
2024-12-10 20:39:01 +01:00
parent acfe7e94a0
commit 0f3e2325e0

9
C_C++/hw.c Normal file
View File

@ -0,0 +1,9 @@
/* @BAKE
gcc $@ -o $*.out -ggdb
valgrind --tool=callgrind $*.out
@STOP
*/
signed main(void) {
puts("hw");
return 0;
}