I'm new to T32 script, and got a question about the scripting. Looking into our project's script, I found the code like below :
A.cmm
=======================================================
....
if (&AAA==TRUE())
(
do B.cmm F=test1
entry &detect
)
.....
=======================================================
B.cmm
=======================================================
.......
test1:
........
return TRUE()
=======================================================
Got few questions: 1. is the entry function used to receive the return value of test1 subroutine, and put it to "detect" macro? 2. Any meaning of "F="? Can't we just use test1 behind do command? Thanks!