Base: Use outln() in the HackStudio basic C++ program template

This commit is contained in:
Andreas Kling 2021-10-30 17:53:43 +02:00
parent 95e492de59
commit d3eb513152

View file

@ -1,7 +1,7 @@
#include <stdio.h>
#include <AK/Format.h>
int main(int argc, char** argv)
{
printf("Hello friends!\n");
outln("Hello friends!");
return 0;
}