aboutsummaryrefslogtreecommitdiff
path: root/tests/nya.lua
diff options
context:
space:
mode:
authoramelia squires <[email protected]>2025-01-09 15:13:14 -0600
committeramelia squires <[email protected]>2025-01-09 15:13:14 -0600
commitea98d74a379dc2cc86579e58815a30fbf0be1459 (patch)
tree9afa3e466234f1163bfccd5e44b9014f1b2ae5ac /tests/nya.lua
parentb0fa1d1bcd4c07ce8623a5b6e8fdfb4c06ec6afc (diff)
parentcd90097eb3260b66c33fe5bb6d3f2869a90861d6 (diff)
merge
Diffstat (limited to 'tests/nya.lua')
-rw-r--r--tests/nya.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/nya.lua b/tests/nya.lua
new file mode 100644
index 0000000..ca5299c
--- /dev/null
+++ b/tests/nya.lua
@@ -0,0 +1,8 @@
+llby = require "lullaby"
+
+llby.net.listen(function(server)
+ server:GET("/", function(res, req)
+ print("hi")
+ llby.io.pprint(req)
+ end)
+end, 8887)