Best Answer sentaro21 , 18 June 2019 - 01:57 AM
// Program "MAIN" "MAIN" Prog "SUB1" "END" // Program "SUB1" "SUB1" Prog "SUB2" // Program "SUB2" "SUB2"
Executing "MAIN" results in the following.
MAIN // running "MAIN", nest is 0 SUB1 // running "SUB1", nset is 1 SUB2 // running "SUB2" from "SUB1", nest is 2 END // running "MAIN", nset is 0
The maximum nest is 10 in fx-5800P.
Go to the full post