1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 10:20:05 +08:00
SpaceVim/bundle/vim-teal/test/test.tl
2022-04-23 17:28:53 +08:00

17 lines
198 B
Plaintext

local x = 123
local Point = record
x: number
y: number
end
local function myfunc(a: any, b: number, c: Point): number
print(a)
if x then
prnit("Hello, I am an error")
end
return 42
end