<div dir="ltr"><div><div><div><div><div>Hi everyone,<br><br></div>I&#39;m trying to follow some very simple code examples, and got this weird situation with a playground:<br><br>//: Playground - noun: a place where people can play<br><br>import UIKit<br><br>let string = &quot;a simple test&quot;<br>if (string.characters.count &gt; 0) {<br>    let words = string.components(separatedBy: &quot; &quot;)<br>    let headline = words.map { (var word) -&gt; String in<br>        let firstCharacter = word.remove(at: word.startIndex)<br>        return &quot;\(String(firstCharacter).uppercased())\(word)&quot;<br>        }.joined(separator: &quot; &quot;)<br>}<br><br></div>This same code inside a func in a class on a normal project will generate a segmentation fault error on xcode, when compiling the code.<br><br></div>Anyone has an idea of what is going wrong?<br><br></div>Regards,<br></div>LF<br></div>