PlayBasic$
 


      The PlayBasic$ constant conatins the current Version of PlayBASIC in a string format.



FACTS:


     * None



Mini Tutorial:


      This example shows the output "PlayBASIC" with the actual Compiler-Version "Vx.xx"

  
  
;assign the string variable Version$ the value of PlayBasic$
  Version$ = PlayBasic$
  
;and display the string
  Print "This is:" + Version$
  
;another way
  Print PlayBasic$ + " is growing;)"
  
; display the screen and waitkey for a key press
  Sync
  WaitKey
  
  



This example would output.

  
  
  This is: PlayBasic Vx.xx
  PlayBasic Vx.xx is growing;)
  
  



 
Related Info: PBVersion | PlayBasicVersion :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com