about summary refs log tree commit diff stats
path: root/dev/c/src/hello/hello.c
blob: df6649390321c02aa46b5092d338abd1472f8b42 (plain) (blame)
1
2
3
4
5
6
#include <stdio.h>

int main() {
    printf("hello World!");
    return 0;
}