Skip to content

Instantly share code, notes, and snippets.

@btmxh
Last active March 4, 2022 07:03
Show Gist options
  • Save btmxh/1ebf913b32ce76a018b57d702a0127a2 to your computer and use it in GitHub Desktop.
Save btmxh/1ebf913b32ce76a018b57d702a0127a2 to your computer and use it in GitHub Desktop.
cpp boilerplate for IT class
#include <iostream>
//Bai cua nhom:
template<typename T>
inline T input(const char* help) {
T value;
std::cout << help; std::cin >> value;
return value;
}
int main() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment