Flutter uses the Dart programming language with a C++ runtime. Dart is an object-oriented language with a C-style syntax which is similar to other popular languages such as JavaScript, C#, and Java.
Example:
// This is a simple hello world program in Dart
void main() {
print(‘Hello world!’);
}