nvim-treesitter/tests/indent/t32/subroutine_block.cmm

24 lines
173 B
Text
Raw Normal View History

2023-05-18 09:40:13 +02:00
printA:
(
PRINT "A"
RETURN
)
sUBROUtINE printB
(
ENTRY &in
PRINT "&in"
RETURN
)
SUBROUTINE printC
// comment
(
PARAMETERS &a &b
PRINT "&a"+"&b"
ENDDO
)