fork download
  1. #include <cstddef>
  2. #include <iostream>
  3.  
  4. void operator"" _log ( const wchar_t* str, size_t size ) {
  5. std::cout << "yay" << std::endl;
  6. }
  7.  
  8. int main() {
  9. L"Message"_log;
  10. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
yay