xref: /freebsd/contrib/libcbor/test/cpp_linkage_test.cpp (revision 10ff414c14eef433d8157f0c17904d740693933b)
1*10ff414cSEd Maste /*
2*10ff414cSEd Maste  * Copyright (c) 2014-2020 Pavel Kalvoda <me@pavelkalvoda.com>
3*10ff414cSEd Maste  *
4*10ff414cSEd Maste  * libcbor is free software; you can redistribute it and/or modify
5*10ff414cSEd Maste  * it under the terms of the MIT license. See LICENSE for details.
6*10ff414cSEd Maste  */
7*10ff414cSEd Maste 
8*10ff414cSEd Maste #include <iostream>
9*10ff414cSEd Maste #include "cbor.h"
10*10ff414cSEd Maste 
main()11*10ff414cSEd Maste int main() { std::cout << "Hello from libcbor " << CBOR_VERSION << std::endl; }
12