| /* | |
| * Copyright 2017, Data61, CSIRO (ABN 41 687 119 230) | |
| * | |
| * SPDX-License-Identifier: BSD-2-Clause | |
| */ | |
| #include <camkes.h> | |
| #include <stdio.h> | |
| int run(void) | |
| { | |
| printf("Foo\n"); | |
| foo_pa_print_attributes(); | |
| printf("Foo Bar\n"); | |
| foo_nested_pa0_print_attributes(); | |
| printf("Foo Bar Baz\n"); | |
| foo_nested_pa1_print_attributes(); | |
| printf("Foo Baz\n"); | |
| foo_nested_pa2_print_attributes(); | |
| return 0; | |
| } |