mirror of
https://github.com/helix-editor/helix
synced 2026-08-04 02:12:59 +02:00
This will be used by the cargo indent-check xtask to validate queries, similar to the existing indent tests in helix-core.
8 lines
88 B
Luau
8 lines
88 B
Luau
local function add(a, b)
|
|
if a > 0 then
|
|
return a + b
|
|
else
|
|
return b
|
|
end
|
|
end
|