Advertisement
JoshDreamland

Results

Jul 8th, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. ============================================================================
  2. =: Command Line Interface :=================================================
  3. ============================================================================
  4.  
  5. Commands are single-letter; 'h' for help.
  6. Follow commands with ENTER on non-unix.
  7. > e
  8. Enter the expression to evaluate:
  9. >> factorial<6>::value
  10. Value returned: 720
  11. > e
  12. Enter the expression to evaluate:
  13. >> matches<int,double,char>::value
  14. Value returned: 1
  15. > e
  16. Enter the expression to evaluate:
  17. >> matches<int,char,char>::value
  18. Value returned: 2
  19. > e
  20. Enter the expression to evaluate:
  21. >> matches<char,int,char>::value
  22. Value returned: 2
  23. > e
  24. Enter the expression to evaluate:
  25. >> matches<double,double,int>::value
  26. Value returned: 2
  27. > e
  28. Enter the expression to evaluate:
  29. >> matches<float,float,float>::value
  30. Value returned: 3
  31. > c
  32. Enter the expression to evaluate:
  33. >> ternary<1,int,double>::tp
  34. Type of expression: tp
  35. typedef t tp;
  36. > c
  37. Enter the expression to evaluate:
  38. >> ternary<0,int,double>::tp
  39. Type of expression: tp
  40. typedef f tp;
  41. > q
  42.  
  43. Goodbye
  44.  
  45. Process returned 0 (0x0) execution time : 66.414 s
  46. Press ENTER to continue.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement