NobbZ' Blog

Hello world!

Papercraft toy in front of PHP echo statement
2022-07-08; Norbert Melzer

KOBU Agency on Unsplash

This is mainly a short post to see whether or not the infrastructure is working as intended.

Withing this blog, we will probably see some languages used, I am not happy with all of them, though this is the world we are living in 😅.

# nix
{ hello, runCommandNoCC }:
runCommandNoCC "hello-world" {} ''
${hello}/bin/hello > $out
''
# elixir
defmodule HelloWorld do
def hello, do: "Hello, World"
end
%% erlang
-module(hello).
hello() -> "Hello, World".
// javascript
function hello() {
return "Hello, World";
}