Dart is an open-source, class-based, optionally-typed programming language for building web applications--on both the client and server--created by Google. Dart’s design goals are: Create a structured yet flexible language for web programming. Make Dart feel familiar and natural to programmers and thus easy to learn. Ensure that Dart delivers high performance on all modern web browsers and environments ranging from small handheld devices to server-side execution
Dart Pattern Examples : Pattern Programs in Dart: Star, Number & Character Patterns, Print different types of Patterns with condition loops
Dart Print * Pattern
import 'dart:io';
void main() {
for(int i=1;i<=5;i++)
{
for(int j=5;j>=i;j--)
{
stdout.write(new String.fromCharCode(i+64));
}
print("");
}
}
|
Output
Dart Pattern Examples