blob: 41f22e80ee2c0f75725f34edbb0527b5a2af2d38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* Copyright (c) 2014-2019 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; }
|