Techman

cancer.cpp

Mar 30th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.54 KB | None | 0 0
  1. // https://www.reddit.com/r/ProgrammerHumor/comments/b72u6m/i_think_weve_reached_perfection/ejpby9v/
  2. #include <iostream>
  3.  
  4. #define Function auto
  5. #define Main main
  6. #define As ->
  7. #define Integer int
  8. #define Begin {
  9. #define End }
  10. #define MsgBox(str) std::cout << str << std::endl
  11. #define Return return
  12. #define If if (
  13. #define Then )
  14. #define True true
  15.  
  16. Function Main() As Integer
  17. Begin
  18.     MsgBox("The Main procedure is starting the application.");
  19.     If True Then
  20.     Begin
  21.         MsgBox("True truly is true");
  22.     End
  23.     Return 0;
  24. End
Add Comment
Please, Sign In to add comment