From e1e0e04d56c146874e70310f19345a10440a5c65 Mon Sep 17 00:00:00 2001 From: Johan Mabille Date: Wed, 1 Apr 2026 10:23:21 +0200 Subject: [PATCH] Fixed LUA simple expression in snippets.json --- snippets/snippets.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/snippets.json b/snippets/snippets.json index 74f9b8d..9da850b 100644 --- a/snippets/snippets.json +++ b/snippets/snippets.json @@ -157,7 +157,7 @@ "lua": { "print_hello": "print('hello')", "print_stderr": "io.stderr:write('error\\n')", - "simple_expr": "return 1 + 1", + "simple_expr": "1 + 1", "simple_expr_result": "2", "incomplete_code": "function foo(", "complete_code": "x = 1",