Hello World Examples - UG1630

Kria SOM App Store Applications Developer Deployment Guide for Ubuntu (UG1630)

Document ID
UG1630
Release Date
2023-08-11
Revision
1.0 English

This appendix outlines two examples for, creating on target, testing on target, where a binary package is created and can be uploaded to a private Debian PPA or a Docker hub.

Both examples use a simple hello.c file with the following content:

#include <stdio.h>
int main()
{
        printf("Hello World!\n");
}