summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sotoudeh <matthewsot@outlook.com>2014-07-28 19:28:16 -0700
committerMatthew Sotoudeh <matthewsot@outlook.com>2014-07-28 19:28:16 -0700
commit046988dca5a8dcc985c6721ab829c4c513e651d8 (patch)
treeaeab9749429e0e265edacb6d578a051591dac9fd
parentcca8a1326e86908146ecb7599d254427bba383e6 (diff)
updated README
-rw-r--r--README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/README.md b/README.md
index e173d21..51f08ee 100644
--- a/README.md
+++ b/README.md
@@ -2,3 +2,12 @@ DNSwift
=======
.NET-compatible extensions for Swift types
+
+DNSwift allows you to do things like:
+
+```
+var names: [String] = [ "John", "James", "Alex", "Jane", "Kate" ];
+var namesStartingWithJ = names.Where({ name in name.StartsWith("J") });
+```
+
+Using it with [SharpSwift](https://github.com/matthewsot/SharpSwift) allows you to directly cross-compile and use C# in Swift projects. \ No newline at end of file
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback