Dart is a class-based, optionally-typed programming language for building web and command-line applications. Dart compiles to modern JavaScript to run on the client and runs natively on the Dart VM for server-side apps.
5
votes
2answers
418 views
A Sudoku game made from Google's Dart language
This is my first real web project and I have never touched JavaScript (barely touched CSS), so I just skipped that and went to dart for fun. Here's a live demo
The code for the dart file is down ...
4
votes
0answers
29 views
Snake Game in Dart
First project in Dart - looking for style tips. I feel like I'm writing it a bit like Java, and would like to learn how to write dart-y dart.
Also - what's the convention on multiple files in a ...
2
votes
1answer
79 views
Providing core functionality orthogonal to business logic in Dart
Below is a simple Trade class with minimal business logic: primarily a method to get market value associated with the trade. But the trade needs the following pieces of core functionality, orthogonal ...
0
votes
0answers
43 views
Tagged unions in Dart
Motivating Example: A financial plan has assets, uniquely identified
by the asset's name, and holdings, each uniquely identified by its account's
name and symbol. When expenses come in, they need to ...