mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 08:55:37 +00:00
17 lines
274 B
C++
17 lines
274 B
C++
#include <iostream>
|
|
#include <latan/Plot.hpp>
|
|
|
|
using namespace std;
|
|
using namespace Latan;
|
|
|
|
int main(void)
|
|
{
|
|
Plot p;
|
|
|
|
p << PlotCommand("x**2") << PlotCommand("x**3") << PlotCommand("x**4");
|
|
cout << p << endl;
|
|
p.display();
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|