зеркало из https://github.com/mozilla/gecko-dev.git
7 строки
120 B
C++
7 строки
120 B
C++
|
#include "structures.h"
|
||
|
|
||
|
int add(int x, int y) { return x + y; }
|
||
|
void f_bind() {
|
||
|
auto clj = std::bind(add, 2, 2);
|
||
|
}
|