neovim-config/test.cpp

16 lines
186 B
C++
Raw Normal View History

2022-11-25 15:42:27 +08:00
#include <cstdio>
#include <iostream>
#include <map>
using namespace std;
int main (int argc, char *argv[])
{
map<int, int> mp;
mp.size();
mp.size();
return 0;
}