Back to having fun with LCTHW

This commit is contained in:
2024-04-15 14:30:58 -04:00
parent 58002830a8
commit e28293e5bd
3 changed files with 14 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
export CFLAGS='-Werror -g'
+1
View File
@@ -0,0 +1 @@
ex1
+12
View File
@@ -0,0 +1,12 @@
#include <stdio.h>
/* This is a comment. */
int main(int argc, char *argv[])
{
int distance = 100;
// this is also a comment
printf("You are %d miles away.\n", distance);
return 0;
}