nvim-treesitter/tests/indent/t32/subroutine_block.cmm
2023-05-18 16:40:13 +09:00

23 lines
173 B
Text

printA:
(
PRINT "A"
RETURN
)
sUBROUtINE printB
(
ENTRY &in
PRINT "&in"
RETURN
)
SUBROUTINE printC
// comment
(
PARAMETERS &a &b
PRINT "&a"+"&b"
ENDDO
)