https://github.com/afbjorklund/hello-nerd
Hello, World!
https://github.com/afbjorklund/hello-nerd
Last synced: 7 months ago
JSON representation
Hello, World!
- Host: GitHub
- URL: https://github.com/afbjorklund/hello-nerd
- Owner: afbjorklund
- Created: 2023-09-24T12:18:07.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-24T12:39:51.000Z (about 2 years ago)
- Last Synced: 2025-03-20T02:07:07.127Z (7 months ago)
- Language: Dockerfile
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```