Skip to content

Commit cf6954e

Browse files
Ian EybergIan Eyberg
Ian Eyberg
authored and
Ian Eyberg
committed
adding in ada example
1 parent ddaf196 commit cf6954e

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

ada/README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Ada Hello World
2+
================
3+
4+
This example shows you how you can run your Ada programs as
5+
unikernels.
6+
7+
```
8+
gnatmake hello.adb
9+
```

ada/hello.adb

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
with Ada.Text_IO; use Ada.Text_IO;
2+
procedure Hello is
3+
begin
4+
Put_Line ("hello from nanos!");
5+
end Hello;

0 commit comments

Comments
 (0)