def init(): InitWindow(800, 450) def update(): BeginDrawing() ClearBackground(RAYWHITE) DrawText("Congrats! You created your first python window!", 150, 200, 20, LIGHTGRAY) DrawFPS(10, 10) EndDrawing()