1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00
sortix--sortix/sortix/test.cpp
Jonas 'Sortie' Termansen 9b79673dcb Initial version of Sortix.
2011-08-05 14:25:00 +02:00

12 lines
196 B
C++

#include "platform.h"
#include "globals.h"
#include "iprintable.h"
#include "log.h"
namespace Sortix
{
void foo(int bar, unsigned int qux)
{
Log::PrintF("Hello, %i, and %u!", bar, qux);
}
}