Return values of functions

前端 未结 2 1859
庸人自扰
庸人自扰 2020-12-20 08:20

I have two functions:

Function1
{
    Function2
    return 1
}

Function2
{
    return 0
}

After executing Function1 it should

2条回答
  •  醉梦人生
    2020-12-20 08:50

    Are you sure it continues to run, and that it only returns 0? It should return 0 (the return from function 2), then return 1, and exit.

提交回复
热议问题