瀏覽代碼

Fix example spacing

Steven Schveighoffer 3 年之前
父節點
當前提交
7e4babd7bf
共有 1 個文件被更改,包括 11 次插入11 次删除
  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();
 }
 ```