blob: a37351f0bc83fc2063450087e2c2247e60023cf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* 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; }
|