Skip to content

Commit

Permalink
Making sure unit tests work
Browse files Browse the repository at this point in the history
  • Loading branch information
Fur0rem committed Jan 24, 2024
1 parent 79552e3 commit 5ca353f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
File renamed without changes.
10 changes: 10 additions & 0 deletions test/doeswork.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <stdio.h>
#include <stdlib.h>

int main() {
int* thing = (int*)malloc(sizeof(int));
*thing = 5;
printf("thing = %d\n", *thing);
free(thing);
return 0;
}

0 comments on commit 5ca353f

Please sign in to comment.