Skip to content

Instantly share code, notes, and snippets.

@orisano
Created January 29, 2015 16:05
Show Gist options
  • Select an option

  • Save orisano/3b0bbd435b45e844f11a to your computer and use it in GitHub Desktop.

Select an option

Save orisano/3b0bbd435b45e844f11a to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
template<typename T>
inline T in(){ T x; cin >> x; return x; }
int main(){
const int x = in<int>();
const double y = in<double>();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment