Skip to content

Commit 743b92b

Browse files
committed
prepare day_05
1 parent 2c4f8d7 commit 743b92b

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

day_05/part_1.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#include <stdio.h>
2+
3+
int main() {
4+
printf("Hello World!");
5+
}

day_05/shell.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
with import <nixpkgs> {};
2+
3+
mkShell {
4+
nativeBuildInputs = [libgcc pkg-config];
5+
buildInputs = [glibc libgcc];
6+
}

0 commit comments

Comments
 (0)