Archived
1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
kilo/hello.c
Hadeed Ahmad c4af9bda7c Make newline behavior consistent with vim
Assume every line ends with a newline, including the last line
2023-09-24 04:50:45 +05:00

5 lines
61 B
C

#include <stdio.h>
int main() {
printf("hello world\n");
}