Skip to content

Instantly share code, notes, and snippets.

@haruo-wakakusa
Created September 19, 2020 07:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haruo-wakakusa/dd8fe9bb3cd2d71cb7ec3c4858686cd5 to your computer and use it in GitHub Desktop.
Save haruo-wakakusa/dd8fe9bb3cd2d71cb7ec3c4858686cd5 to your computer and use it in GitHub Desktop.
Go To トラベルで旅行した記念に作成したプログラム
#include <stdio.h>
int main() {
char *s;
for (s = "新しい日本を見つけよう\n"; *s != '\0'; ++s) putchar(*s);
goto travel;
printf("--- STAY HOME ---\n");
travel:
printf("*** Go To トラベル ***\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment