print_int

This commit is contained in:
Mylloon 2023-12-31 20:03:27 +01:00
parent 8b0117af46
commit 4021911ba8
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -16,7 +16,7 @@ void print_string(const char* s) {
}
void print_int(int64_t n) {
fprintf(stderr, "Students! This is your job!\n");
printf("%ld", n);
}
void observe_int(int64_t n) {