mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-03 20:10:10 -04:00
23 lines
173 B
Text
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
|
|
)
|
|
|