summaryrefslogtreecommitdiff
path: root/rushs/tinyprintf/hello_world/hello.c
blob: 0681c18b1102458ca0986a89038387528c5e6ee8 (plain)
1
2
3
4
5
6
7
#include <stdio.h>

int main(void)
{
    puts("Hello World!");
    return 0;
}