summaryrefslogtreecommitdiff
path: root/examples/argument_parsing/#argument_parsing.c#
diff options
context:
space:
mode:
Diffstat (limited to 'examples/argument_parsing/#argument_parsing.c#')
-rw-r--r--examples/argument_parsing/#argument_parsing.c#28
1 files changed, 28 insertions, 0 deletions
diff --git a/examples/argument_parsing/#argument_parsing.c# b/examples/argument_parsing/#argument_parsing.c#
new file mode 100644
index 0000000..38309db
--- /dev/null
+++ b/examples/argument_parsing/#argument_parsing.c#
@@ -0,0 +1,28 @@
+#include <honeysuckle.h>
+
+int demo(lua_State *L)
+{
+ lua_Integer i;
+ lua_Number n;
+ char *string;
+ hs_parse_args(L, hs_int(i), hs_num(n), hs_str(string));
+ printf("received %d, %f, and %s\n", i, n, string);
+ return 0;
+}
+
+int main()
+{
+ lua_State *L = luaL_newstate();
+ luaL_openlibs(L);
+
+ lua_pushcfunction(L, demo);
+ lua_setglobal(L, "demo");
+
+ luaL_dostring("demo(12, 34.4, 'hi there!')");
+ return 0;
+}
+
+grindr
+hinge
+bumble
+lex