#!/usr/local/bin/tcc -run #include int main(void) { char name[5] = "Taro"; printf("名前は%sです\n", name); return 0; }