Programas como
Hola mundo en VR-BASIC
Code: Select all
class E3 implements BASIC_Program
{
virtual Start()
{
Screen (0);
Color (15, 1, 1);
Cls ();
KeyOff ();
Print("Hola mundo!");
}
}Code: Select all
class BasExample implements BASIC_Program
{
virtual Start()
{
Screen(2);
PSet(100, 100, 5);
Line(20, 20, 300, 250, 8);
}
}Hola mundo en VR-BASIC
Code: Select all
class Ejemplo3 implements BASIC_Program
{
virtual Start()
{
Screen (0);
Color (15, 1, 1);
Cls ();
KeyOff ();
Print("Hola mundo!");
}
}Hacen petar el sistema y se reseta.
Calling BASIC from VR_SCRIPT crashes the system and resets.
Programs like that
Hola mundo en VR-BASIC
Code: Select all
class E3 implements BASIC_Program
{
virtual Start()
{
Screen (0);
Color (15, 1, 1);
Cls ();
KeyOff ();
Print("Hola mundo!");
}
}Code: Select all
class BasExample implements BASIC_Program
{
virtual Start()
{
Screen(2);
PSet(100, 100, 5);
Line(20, 20, 300, 250, 8);
}
}Hola mundo en VR-BASIC
Code: Select all
class Ejemplo3 implements BASIC_Program
{
virtual Start()
{
Screen (0);
Color (15, 1, 1);
Cls ();
KeyOff ();
Print("Hola mundo!");
}
}crashes the system and resets