Donna v0.3.0
Donna has released version 0.3.0, focusing on improving developer experience. This update includes enhanced error messages, better type error reporting, and the introduction of 'todo' and 'panic' functionalities. Future updates will continue to prioritize user satisfaction by addressing errors, bugs, and formatting improvements.
- ▪Donna v0.3.0 was released today, enhancing its functionality as a small functional language.
- ▪The update improves error messages and type error reporting for better debugging.
- ▪New features include 'todo' as a placeholder and 'panic' for error handling.
DEV.to (Top) files mainly under programming. We currently carry 4,877 of its stories.
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 === 3935119) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Nikolas Skyl Posted on May 25 Donna v0.3.0 #opensource #programming Donna released v0.3.0 today. What this version brings to Donna? Donna designed to be a small functional language that compiles to native binaries and focus on DX(Developer Experience).It's also statically typed and bootstrapped. In the past versions we focused to make the experience of using Donna better. We focused on a list of things that needed to refined. Let's take a brief look on those: Error messages.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).