3.7.1 call문
설명
문법
call <JOB번호 혹은 파일이름, 사용자함수명> [,매개변수1,매개변수2,…]사용 예
# 0001_main.job
print "main job start"
call 102_err
print "main job end"
end# 0102_err.job
print "sub-program"
endLast updated
Was this helpful?
call <JOB번호 혹은 파일이름, 사용자함수명> [,매개변수1,매개변수2,…]# 0001_main.job
print "main job start"
call 102_err
print "main job end"
end# 0102_err.job
print "sub-program"
endLast updated
Was this helpful?
Was this helpful?
main job start
sub-program
main job end