ocarina/tests/print/print.cpp
Anna Schumaker 1482f5bcc8 print: Rename test from basic/ to print/
"basic" doesn't really fit the description for what I'm testing here.  I
was expecting to do a series of unrelated tests, but all I'm really
doing it testing the print function.

Signed-off-by: Anna Schumaker <schumaker.anna@gmail.com>
2014-04-06 19:56:54 -04:00

14 lines
261 B
C++

/*
* Copyright 2013 (c) Anna Schumaker.
* Prints version info to the screen when compiled in debug mode
*/
#include <print.h>
#include <version.h>
int main(int argc, char **argv)
{
print("%s\n", get_version());
dprint("%s\n", get_version());
return 0;
}