summaryrefslogtreecommitdiff
path: root/first_code.c
blob: 87be6e757ed012c46a562c6b6824b78805901ee0 (plain)
1
2
3
4
5
6
7
8
/* this is the first code!*/
#include <stdio.h>

int main()
{
    printf("I love college\n");
    return 1;
}