# HG changeset patch # User HackBot # Date 1455500199 0 # Node ID 628a8e107fbcc4d05c8f5e25c5c1962fcf17b3cb # Parent 210509362ed35c19e62af94fcc3c0a2da0b17115 ` echo \'if [ $1 -eq "Spanish" ]; then echo "\xc2\xa1Hola, mundo!"; else echo "Hello, world!"; fi\' > bin/hello-world-in-any-language diff -r 210509362ed3 -r 628a8e107fbc bin/hello-world-in-any-language --- a/bin/hello-world-in-any-language Mon Feb 15 01:25:15 2016 +0000 +++ b/bin/hello-world-in-any-language Mon Feb 15 01:36:39 2016 +0000 @@ -1,1 +1,1 @@ -echo Hello, World +if [ $1 -eq "Spanish" ]; then echo "¡Hola, mundo!"; else echo "Hello, world!"; fi