Sign in

gwj / po_oopc · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • po_oopc
  • examples06
  • 01-operator
  • operator.cpp
  • Added Koenig lookup example
    121e73b8
    Grzegorz Jabłoński authored
    2019-11-18 09:56:19 +0100  
    Browse Code »
operator.cpp 136 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10
#include <iostream>

int main()
{

//std::cout << "ala\n" << "ola\n";

std::operator<<(std::operator<<(std::cout, "ala\n"), "ola\n");

}