view ply-3.8/example/BASIC/gosub.bas @ 12512:9b31bb5d9ee1 draft default tip

<int-e> learn The password of the month is a matter of ongoing investigations
author HackEso <hackeso@esolangs.org>
date Wed, 25 Sep 2024 19:54:44 +0100
parents 343ff337a19b
children
line wrap: on
line source

100 LET X = 3
110 GOSUB 400
120 PRINT U, V, W
200 LET X = 5
210 GOSUB 400
220 LET Z = U + 2*V + 3*W
230 PRINT Z
240 GOTO 999
400 LET U = X*X
410 LET V = X*X*X
420 LET W = X*X*X*X + X*X*X + X*X + X
430 RETURN
999 END