nf7/main.cc

14 lines
247 B
C++

// No copyright
#include <iostream>
#include "iface/version.hh"
#include "core/version.hh"
int main() {
std::cout << "iface version: " << nf7::version() << std::endl;
std::cout << "core version: " << nf7::core::version() << std::endl;
}