An open API service indexing awesome lists of open source software.

https://github.com/afbjorklund/hello-nerd

Hello, World!
https://github.com/afbjorklund/hello-nerd

Last synced: 7 months ago
JSON representation

Hello, World!

Awesome Lists containing this project

README

          

# Hello, Nerd! 🤓

Small "hello world" program:

```console
$ ./hello.c
```

Build program and run program:

```console
$ make
$ ./hello
```

Build image and run container:

```console
$ nerdctl build -t hello .
$ nerdctl run --rm hello
```

---

```C
#include
int main() {
puts("Hello, world!");
}
```

```sh
cat hello.txt
```