DEV Community

Discussion on: Give me your best programming haiku

Collapse
 
alexalb32039053 profile image
Alex Alberto

include

using namespace std;

int main()
{
cout << "Beautiful is better than ugly." << endl;
cout << "Explicit is better than implicit." << endl;
cout << "Simple is better than complex." << endl;
cout << "Complex is better than complicated." << endl;
cout << "Flat is better than nested." << endl;
cout << "Sparse is better than dense." << endl;
cout << "Readability counts." << endl;
cout << "Special cases aren't special enough to break the rules." << endl;
cout << "Although practicality beats purity." << endl;
cout << "Errors should never pass silently." << endl;
cout << "Unless explicitly silenced." << endl;
cout << "In the face of ambiguity, refuse the temptation to guess." << endl;
cout << "There should be one-- and preferably only one --obvious way to do it." << endl;
cout << "Although that way may not be obvious at first unless you're Dutch." << endl;
cout << "Now is better than never." << endl;
cout << "never is often better than right now." << endl;
cout << "If the implementation is hard to explain, it's a bad idea." << endl;
cout << "If the implementation is easy to explain, it may be a good idea" << endl;
cout << "Namespaces are one honking great idea -- let's do more of those" << endl;

return 0;
Enter fullscreen mode Exit fullscreen mode

}
code with C++