Explorar o código

Create bool.md

Marco Bambini %!s(int64=6) %!d(string=hai) anos
pai
achega
6558f66c9e
Modificáronse 1 ficheiros con 7 adicións e 0 borrados
  1. 7 0
      docs/bool.md

+ 7 - 0
docs/bool.md

@@ -0,0 +1,7 @@
+### Bool
+
+The Bool data type can have only two values, they are the literals true and false. A Bool value expresses the validity of a condition (tells whether the condition is true or false).
+```swift
+	var a = true;
+	var b = false;
+```