Skip to content

Instantly share code, notes, and snippets.

@loliGothicK
Created April 12, 2018 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loliGothicK/c0c5b512d4794fddd133a04bc711ef2e to your computer and use it in GitHub Desktop.
Save loliGothicK/c0c5b512d4794fddd133a04bc711ef2e to your computer and use it in GitHub Desktop.
int main(){
auto twice = [](int n){ return n*2; };
// twiceのoperator()は自動的にconstexpr指定されているのでOK
constexpr int x = twice(2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment