ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
367 B

  1. 010 REM functionw with many parameters
  2. 020 REM Howard Wulf, AF5NE
  3. 030 REM
  4. 110 function tom( a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z )
  5. 120 print "a=";a
  6. 130 print "z=";z
  7. 140 tom = a + z
  8. 150 end function
  9. 160 rem
  10. 170 az = tom( 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 )
  11. 180 print "az=";az
  12. 999 end