8 lines
216 B
Python
8 lines
216 B
Python
from pyray import *
|
|
init_window(800, 450, "Hello")
|
|
while not window_should_close():
|
|
begin_drawing()
|
|
clear_background(WHITE)
|
|
draw_text("Hello world", 190, 200, 20, VIOLET)
|
|
end_drawing()
|
|
close_window()
|