summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/sol2/examples/basic.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/sol2/examples/basic.cpp')
-rw-r--r--3rdparty/sol2/examples/basic.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/3rdparty/sol2/examples/basic.cpp b/3rdparty/sol2/examples/basic.cpp
deleted file mode 100644
index cf00ee70ab2..00000000000
--- a/3rdparty/sol2/examples/basic.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <sol.hpp>
-
-#include <iostream>
-
-int main() {
- // create an empty lua state
- sol::state lua;
-
- // by default, libraries are not opened
- // you can open libraries by using open_libraries
- // the libraries reside in the sol::lib enum class
- lua.open_libraries(sol::lib::base);
-
- // call lua code directly
- std::cout << "=== basic example ===" << std::endl;
- lua.script("print('hello world')");
-
- std::cout << std::endl;
-} \ No newline at end of file