1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-02-21 09:42:29 +01:00

Update content in Dart (#3244)

* Updated 100 Dart Basics 

Dart can also be used to build server and desktop applications.

* Updated 103 Functions

Explanation about dart functions
This commit is contained in:
Benson Arafat 2023-01-06 12:52:59 +01:00 committed by GitHub
parent 1f3bf761cd
commit 522f16957a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
# Functions
Dart is a true object-oriented language, so even functions are objects and have a type, Function. This means that functions can be assigned to variables or passed as arguments to other functions. You can also call an instance of a Dart class as if it were a function.
Visit the following resources to learn more:
- [Functions](https://dart.dev/guides/language/language-tour#functions)

View File

@ -1,6 +1,6 @@
# Dart Basics
Dart is an open-source, general-purpose, object-oriented programming language with C-style syntax developed by Google in 2011. The purpose of Dart programming is to create a frontend user interfaces for the web and mobile apps.
Dart is an open-source, general-purpose, object-oriented programming language with C-style syntax developed by Google in 2011. The purpose of Dart programming is to create a frontend user interfaces for the web and mobile apps. It can also be used to build server and desktop applications.
Visit the following resources to learn more: