Skip to content

Instantly share code, notes, and snippets.

@huljas
Created November 27, 2011 18:45
Show Gist options
  • Save huljas/1397969 to your computer and use it in GitHub Desktop.
Save huljas/1397969 to your computer and use it in GitHub Desktop.
My language song
#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
*/
/**
* 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);
}
}
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