The First Article July 1, 2025 on Erick's blog

This is a new article to test this new static blog platform.

#include <stdio.h>

int main(void) {
  printf("hello world\n");
}

Let’s see now a bash comment section:

#!/bin/bash
WORLD="ZA WARUDO"
echo "hello ${WORLD}"
exit 0