int main()

in lessons/extract_lambda.cpp [33:38]


int main()
{
    std::vector<int> v = {5, 13, 1, 8, 2, 1, 3};
    sort(v);
    print(v, ", ");
}