From d346342ad608849bdd1bcae7973bbff571225ba1 Mon Sep 17 00:00:00 2001
From: George Petrov <petrovg@gmail.com>
Date: Mon, 29 Jul 2013 14:09:11 +0100
Subject: [PATCH] Added some pattern matching

---
 scala.html.markdown | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/scala.html.markdown b/scala.html.markdown
index 173d271d..d6524a8f 100644
--- a/scala.html.markdown
+++ b/scala.html.markdown
@@ -121,3 +121,25 @@ val text = if (x == 10) "yeah" else "nope"
 
 // Object oriented features
 
+class Person 
+
+
+
+// Case classes
+
+case class Person(name:String, phoneNumber:String)
+
+Person("George", "1234") == Person("Kate", "1236")
+
+
+
+// Pattern matching
+
+
+// Regular expressions
+
+
+// Strings
+
+
+// Input and output
\ No newline at end of file