/momentcpp

Like moment.js, in c++

Primary LanguageC++MIT LicenseMIT

momentcpp

Like moment.js, in c++

IMPORTANT: do not use it (experimental)

usage

#include <iostream>
#include <moment>

int main(){
  std::cout << moment::moment() << std::endl;
}

build

$ mkdir build && cd build
$ cmake .. && make --build .

test

this project use google test. To run tests:

# make sure project is built, then
$ ./build/moment_test

see this if you have troubles installing it.