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