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''
# elixirdefmodule HelloWorld dodef hello, do: "Hello, World"end
%% erlang-module(hello).hello() -> "Hello, World".
// javascriptfunction hello() {return "Hello, World";}