GoSub...Return Statement

Calls a subroutine that is indicated by a label inside a Sub or a Function. The statements following the label are executed until the next Return statement. Afterwards, the program continues with the statement that follows the GoSub statement.

Syntax:


GoSub label[:]

Parameters:

label: A line identifier indicating where to continue execution. The scope of a label in that of the routine it belongs to.

The GoSub statement calls a local subroutine indicated by a label from within a subroutine or a function. The name of the label must end with a colon (":").


  Sub/Function foo
      ' statements
      GoSub label
      ' statements
      Exit Sub/Function
  label:
      ' statements
      Return
  End Sub/Function
๊ฒฝ๊ณ  ์•„์ด์ฝ˜

Return ๋ฌธ ์•ž์— GoSub๊ฐ€ ์—†์„ ๊ฒฝ์šฐ LibreOffice Basic์€ ์˜ค๋ฅ˜ ๋ฉ”์‹œ์ง€๋ฅผ ๋ฐ˜ํ™˜ํ•ฉ๋‹ˆ๋‹ค. ๋‹ค์Œ Return ๋ฌธ์— ๋„๋‹ฌํ•˜๊ธฐ ์ „์— Sub ๋˜๋Š” Function์„ ๋๋‚ด๋ ค๋ฉด Exit Sub ๋˜๋Š” Exit Function์„ ์‚ฌ์šฉํ•ฉ๋‹ˆ๋‹ค.


๋‹ค์Œ์€ GoSub ๋ฐ Return ์‚ฌ์šฉ์„ ๋ณด์—ฌ ์ฃผ๋Š” ์˜ˆ์ž…๋‹ˆ๋‹ค. ํ”„๋กœ๊ทธ๋žจ ๊ตฌ์—ญ์„ ๋‘ ๋ฒˆ ์‹คํ–‰ํ•จ์œผ๋กœ์จ ํ”„๋กœ๊ทธ๋žจ์€ ์‚ฌ์šฉ์ž๊ฐ€ ์ž…๋ ฅํ•œ ๋‘ ์ˆซ์ž์˜ ์ œ๊ณฑ๊ทผ์„ ๊ณ„์‚ฐํ•ฉ๋‹ˆ๋‹ค.

Example:


Sub ExampleGoSub
Dim iInputa As Single
Dim iInputb As Single
Dim iInputc As Single
    iInputa = Int(InputBox("Enter the first number: ","NumberInput"))
    iInputb = Int(InputBox("Enter the second number: ","NumberInput"))
    iInputc=iInputa
    GoSub SquareRoot
    Print "The square root of";iInputa;" is";iInputc
    iInputc=iInputb
    GoSub SquareRoot
    Print "The square root of";iInputb;" is";iInputc
    Exit Sub
SquareRoot:
    iInputc=sqr(iInputc)
    Return
End Sub

Please support us!