freebsd-nq/contrib/libcbor/test/cpp_linkage_test.cpp
Ed Maste 10ff414c14 Import libcbor at 'contrib/libcbor/'
git-subtree-dir: contrib/libcbor
git-subtree-mainline: 293663f4da9e8b8aeb106ce3b73a8ed2aa2a8a90
git-subtree-split: 5b2defbd2a1aa991bd0a2855eef8e15107572747
2021-10-06 20:26:10 -04:00

12 lines
327 B
C++

/*
* Copyright (c) 2014-2020 Pavel Kalvoda <me@pavelkalvoda.com>
*
* libcbor is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
#include <iostream>
#include "cbor.h"
int main() { std::cout << "Hello from libcbor " << CBOR_VERSION << std::endl; }