Created
November 27, 2011 18:45
-
-
Save huljas/1397969 to your computer and use it in GitHub Desktop.
My language song
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
cout << "C++, C++, C++" << endl; | |
cout << "The language I quite want to be" << endl; | |
cout << "Writing code but scared of" << endl; | |
cout << "your pointers and errors so cryptic" << endl; | |
cout << "C++, C++, C++" << endl; | |
cout << "C++ has it all" << endl; | |
return 0; | |
} | |
/** | |
* I know, I know, I know | |
* There are languages I left out | |
* Too many to mention | |
* Too important to not | |
* I will, I will, I will | |
* I will learn them someday | |
* | |
* I will learn them someday | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* My languages song. | |
* | |
* Inspired by the Finland song from Monty Python. | |
*/ | |
public class Song { | |
public static void main(String[] args) { | |
String s = "Java, Java, Java\n" | |
+ "The language I want to be\n" | |
+ "Debugging or Test Driving\n" | |
+ "Or analyzing Stack Trace\n" | |
+ "Java, Java, Java\n" | |
+ "It's the language for me\n"; | |
+ "\n" | |
+ "Your syntax so old fashioned\n" | |
+ "So far from Haskell\n" | |
+ "Too verbose for today's standards\n" | |
+ "Missing functional paradigm\n"; | |
System.out.println(s); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print """Python, Python, Python | |
The language I want to be | |
Hacking and Learning | |
Since Google uses it too | |
Python, Python, Python | |
Python has it all | |
Your syntax so crispy | |
And easy to learn | |
A poor second to Ruby | |
When writing web code | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment