Ver código fonte

Fix example spacing

Steven Schveighoffer 3 anos atrás
pai
commit
7e4babd7bf
1 arquivos alterados com 11 adições e 11 exclusões
  1. 11 11
      README.md

+ 11 - 11
README.md

@@ -80,17 +80,17 @@ import raylib;
 
 void main()
 {
-        // call this before using raylib
-        validateRaylibBinding();
-	InitWindow(800, 600, "Hello, Raylib-D!");
-	while (!WindowShouldClose())
-	{
-		BeginDrawing();
-		ClearBackground(Colors.RAYWHITE);
-		DrawText("Hello, World!", 400, 300, 28, Colors.BLACK);
-		EndDrawing();
-	}
-	CloseWindow();
+    // call this before using raylib
+    validateRaylibBinding();
+    InitWindow(800, 600, "Hello, Raylib-D!");
+    while (!WindowShouldClose())
+    {
+        BeginDrawing();
+        ClearBackground(Colors.RAYWHITE);
+        DrawText("Hello, World!", 400, 300, 28, Colors.BLACK);
+        EndDrawing();
+    }
+    CloseWindow();
 }
 ```