Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 160 Bytes

type.md

File metadata and controls

15 lines (13 loc) · 160 Bytes

TODO

sample

TYPE [t]
FROM INT
WITH TYPECHECK STRICT
VALUES (
	[a] = 1,
	[b] = 2,
	[c] = 3
)

VAR @i = [t]::[b] -- transpiled to DECLARE @i = 2