MOP2 programming intro

This commit is contained in:
2025-10-14 23:25:35 +02:00
parent 03c1ce91be
commit 456f6d159a
2 changed files with 189 additions and 0 deletions

View File

@ -0,0 +1,20 @@
= Hello World!
Kamil Kowalczyk
2025-09-09
:jbake-type: post
:jbake-tags: helloworld
:jbake-status: published
This is a hello world post!
[source,c]
----
#include <stdio.h>
int main(void) {
printf("Hello World!\n");
return 0;
}
----
Enjoy the blog! More posts are coming in the near future!