summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c22
1 files changed, 4 insertions, 18 deletions
diff --git a/src/main.c b/src/main.c
index ca49379..8111ef8 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,21 +1,7 @@
-#include "honey.h"
+#include <stdio.h>
-int main(int argc, char** argv)
+int main()
{
- honey_options opts;
- if (!honey_parse_options(&opts, argc, argv)) {
- return 0;
- }
-
- lua_State* L;
-
- if (!honey_setup(&L))
- return 1;
-
- bool success = honey_run(L, opts);
-
- if (!success)
- return 1;
-
- return 0;
+ printf("hello, world!\n");
+ return 0;
}