main.cpp 264 Bytes
Newer Older
1
// Headers are available because we added the pls target
2 3
#include <string>
#include <cstdio>
4
#include <tuple>
5

6
#include <pls/pls.h>
7
#include <pls/dataflow/graph.h>
8

9
int main() {
10
  using namespace pls::dataflow;
11

12
  graph<inputs<int>, outputs<int, int>, 8> graph;
13
}