From 411b2b01d3a83369f0754ec03b40499e4f8bcade Mon Sep 17 00:00:00 2001 From: Devin McGinty Date: Sun, 1 Feb 2015 16:39:52 -0500 Subject: Add example of string-as-list and fix punctuation --- haskell.html.markdown | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/haskell.html.markdown b/haskell.html.markdown index d5dd5141..52433aaa 100644 --- a/haskell.html.markdown +++ b/haskell.html.markdown @@ -59,6 +59,7 @@ not False -- True "Hello " ++ "world!" -- "Hello world!" -- A string is a list of characters +['H', 'e', 'l', 'l', 'o'] -- "Hello" "This is a string" !! 0 -- 'T' @@ -67,7 +68,7 @@ not False -- True ---------------------------------------------------- -- Every element in a list must have the same type. --- These two lists are the same +-- These two lists are the same: [1, 2, 3, 4, 5] [1..5] -- cgit v1.2.3