1/*
2 * Copyright 2017, Data61, CSIRO (ABN 41 687 119 230)
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#include <assert.h>
8#include <camkes.h>
9#include <stdio.h>
10
11int run(void) {
12    printf("Hello, World!\n");
13
14    return 0;
15}
16