tests/C_C++/printf_star.c
2024-07-22 19:39:19 +02:00

5 lines
84 B
C

// @BAKE gcc $@ -o $*.out
signed main() {
printf("%*s\n", 20, "hello world");
}