Discovering Swift
The article discusses the Swift programming language and its role in mobile application development. While the author expresses a preference for other languages, they acknowledge Swift's recent capability to create applications for both iOS and Android. A list of resources for learning Swift is provided, highlighting various publications and materials available for developers.
- ▪Swift is a programming language that aims to improve mobile application development.
- ▪The author prefers languages like Java/Kotlin for mobile apps but recognizes Swift's new capabilities.
- ▪A list of resources for learning Swift is included, featuring books and official documentation.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 1302415) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Mathieu K Posted on May 19 Discovering Swift #swift #beginners #tooling #ios Is Swift one of those so called "modern" languages trying to fix what C gave us for good? Or just something else? Well, for the ones who know me a bit, "modern" languages like Rust or Go are not really my friends. Swift, in other hands, is trying something that annoys me: mobile application development. Mobile applications are generarily using Java/Kotlin or C++.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).