Ubuntu Pastebin

Paste from iMadper at Mon, 16 Mar 2015 06:34:00 +0000

Download as text
1
2
3
4
5
6
7
8
9
#include <iostream>
#include <regex>

int main(int argc, char *argv[])
{
  std::regex rx("^(.*):([0-9]+):([0-9]+)");
  std::cout << 1 << std::endl;
  return 0;
}
Download as text