minimal.cpp 121 B

12345678
  1. #include "../matplotlibcpp.h"
  2. namespace plt = matplotlibcpp;
  3. int main() {
  4. plt::plot({1,3,2,4});
  5. plt::show();
  6. }