annotate bin/hello-world-in-any-language @ 6863:ecb520c9d0c7

<Elronnd> ` echo \'if [ -z $1 ]; then echo "Hello, world!"; else if [ -f hw/$1 ]; then cat hw/$1; else echo "Your language does not exist"; fi; fi\' > bin/hello-world-in-any-language
author HackBot
date Mon, 15 Feb 2016 02:02:16 +0000
parents a8fb31e64c48
children 766a281f3856
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6863
ecb520c9d0c7 <Elronnd> ` echo \'if [ -z $1 ]; then echo "Hello, world!"; else if [ -f hw/$1 ]; then cat hw/$1; else echo "Your language does not exist"; fi; fi\' > bin/hello-world-in-any-language
HackBot
parents: 6862
diff changeset
1 if [ -z $1 ]; then echo "Hello, world!"; else if [ -f hw/$1 ]; then cat hw/$1; else echo "Your language does not exist"; fi; fi