artulab
projects
/
openbsd
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b5ada909e439767fb703b31668373cce085a5f91
[openbsd]
/
1
#include <vector>
2
3
int main(int argc, char **argv) {
4
std::vector<std::vector<int> > a = {{1, 2, 3}, {3, 2, 1}};
5
return 0; // Set break point at this line.
6
}