NobbZ.dev

Hello world!

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";
}