1/*
2 * Copyright (c) 2014-2019 Pavel Kalvoda <me@pavelkalvoda.com>
3 *
4 * libcbor is free software; you can redistribute it and/or modify
5 * it under the terms of the MIT license. See LICENSE for details.
6 */
7
8#include <cbor.h>
9#include <stdio.h>
10
11int main(int argc, char* argv[]) {
12  printf("Hello from libcbor %s\n", CBOR_VERSION);
13}
14