17 lines
193 B
C++
17 lines
193 B
C++
/*
|
|
** Practice runtime for Yab2Cpp
|
|
**
|
|
** by Samuel D. Crow
|
|
*/
|
|
#include "runtime.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
unsigned int ret=run();
|
|
if (ret!=EXIT)
|
|
{
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|