496
HP Calculators / Re: HP Prime Emulator!!!
« on: August 07, 2013, 04:22:54 pm »
You can give a RGB[A] value to drawing functions. For example, you can do this for a colored hello world:
Code: [Select]
EXPORT hello_world()
BEGIN
RECT();
TEXTOUT_P("Hello World!",50,50,0,RGB(0,136,204));
FREEZE;
END;