blob: 8703be48e3c8ee78c3afd7209d582cede6b646df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* luatest.c: Basic test for liblua53
*
* Copyright (C) 2014 Peter Breitenlohner <tex-live@tug.org>
* You may freely use, modify and/or distribute this file.
*/
#include <stdio.h>
#include <lua.h>
int main (int argc, char **argv)
{
printf ("%s: Compiled with %s\n",
argv[0], LUA_VERSION);
return 0;
}
|