File indexing completed on 2024-05-12 04:35:29

0001 //krazy:skip
0002 #include <iostream>
0003 
0004 #include <QString>
0005 
0006 int main (int argc, char *argv[]) {
0007     //A spelling error: begining
0008 
0009     std::cout << QString("Hello World!") + "\n";
0010 
0011     //Another spelling error: commiting
0012 
0013     std::cout << QString("Goodbye") + " " + QString("World!") + "\n";
0014 
0015     //Yet another spelling error: labelling
0016 
0017     return 0;
0018 }