Skip to content

Instantly share code, notes, and snippets.

@osyo-manga
Created May 30, 2015 15:26
Show Gist options
  • Select an option

  • Save osyo-manga/f1cc61e87e02a226f02d to your computer and use it in GitHub Desktop.

Select an option

Save osyo-manga/f1cc61e87e02a226f02d to your computer and use it in GitHub Desktop.
hage
#include <iostream>
#include <algorithm>
int
min(int n, int m){
return n + m;
}
int
main(){
{
using std::min;
std::cout << min(1, 2) << std::endl;
}
{
using namespace std;
std::cout << min(1, 2) << std::endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment