blob: d4d138bf8f9e7f57d19235424f51497c0785f766 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <stdio.h>
#include "cudl.h"
int main() {
struct cudl_value value;
cudl_parse_from_file(stdin, &value);
if (cudl_err)
return cudl_err;
cudl_debug(value);
return 0;
}
|