From 074af48c85d35d748e916f9df8c362478d3c99c3 Mon Sep 17 00:00:00 2001 From: Jesse Brault Date: Tue, 26 Nov 2024 10:49:36 -0600 Subject: [PATCH] Add println lua function with inline keyword. --- sketching/println.dm | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sketching/println.dm diff --git a/sketching/println.dm b/sketching/println.dm new file mode 100644 index 0000000..d737926 --- /dev/null +++ b/sketching/println.dm @@ -0,0 +1,2 @@ +#target[lua] +pub inline fn println(message: Any) = lua {% print($message) %} \ No newline at end of file