view ply-3.8/example/BASIC/gosub.bas @ 7667:9d9cd8cbb8b5

<moon__> ` mkx bin/userweps//echo boily has the mapole, oerjan has the swatter, moon__ has the snail cannon, /me is a motherfucking walrus, what else is there?
author HackBot
date Tue, 03 May 2016 00:47:32 +0000
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