15b2defbdSEd Maste /* 25b2defbdSEd Maste * Copyright (c) 2014-2020 Pavel Kalvoda <me@pavelkalvoda.com> 35b2defbdSEd Maste * 45b2defbdSEd Maste * libcbor is free software; you can redistribute it and/or modify 55b2defbdSEd Maste * it under the terms of the MIT license. See LICENSE for details. 65b2defbdSEd Maste */ 75b2defbdSEd Maste 85b2defbdSEd Maste #include <iostream> 95b2defbdSEd Maste #include "cbor.h" 105b2defbdSEd Maste main()115b2defbdSEd Masteint main() { std::cout << "Hello from libcbor " << CBOR_VERSION << std::endl; } 12