aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/t32/subroutine_block.cmm
blob: 24891c609013a68db40ebce6a977410f48c66e60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
printA:
(
  PRINT "A"
  RETURN
)

sUBROUtINE printB
(
  ENTRY &in

  PRINT "&in"
  RETURN
)

SUBROUTINE printC
// comment
(
  PARAMETERS &a &b

  PRINT "&a"+"&b"
  ENDDO
)