blob: fbe1e1cd1fb07dd087ca39ee7b00209c22ead9ea [file] [log] [blame]
Austin Schuh6c8ec4c2018-01-23 11:18:57 -08001#include "../matplotlibcpp.h"
2
3namespace plt = matplotlibcpp;
4
5int main() {
6 plt::plot({1,3,2,4});
7 plt::show();
8}