aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaurĂ­cio Antunes <mauricio.abreua@gmail.com>2022-11-14 20:31:01 -0300
committerMaurĂ­cio Antunes <mauricio.abreua@gmail.com>2022-11-14 20:31:01 -0300
commit807e94432911680a17913c733b24386ade358c80 (patch)
treecbaf6806d9b94fc2924e18c61309108790c5613c
parent04aafcf047bd27af718891db805a404fbf6a88ea (diff)
docs: README for if
-rw-r--r--exercises/if/README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/exercises/if/README.md b/exercises/if/README.md
new file mode 100644
index 0000000..ab7bab8
--- /dev/null
+++ b/exercises/if/README.md
@@ -0,0 +1,3 @@
+# If
+
+`if` is the most basic type of control flow. Go does not have [pattern matching](https://en.wikipedia.org/wiki/Pattern_matching) so `if` is widely used.