1/*
2 * Copyright 2017, Data61, CSIRO (ABN 41 687 119 230)
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#include <camkes.h>
8#include <stdio.h>
9
10int run(void) {
11
12    printf("Foo\n");
13    foo_pa_print_attributes();
14
15    printf("Foo Bar\n");
16    foo_nested_pa0_print_attributes();
17
18    printf("Foo Bar Baz\n");
19    foo_nested_pa1_print_attributes();
20
21    printf("Foo Baz\n");
22    foo_nested_pa2_print_attributes();
23
24    return 0;
25}
26