• Ir a navegación principal
  • Ir al contenido principal

CARLOSZR.COM

Mi blog personal, CarlosZR

  • Curso Gratis de Dart
  • Blog
  • Contacto
Usted está aquí: Inicio / Curso de Dart

Curso de Dart

Índice

  • 1 ¿Quieres aprender a desarrollar apps para iOs y Android? Empieza primero aprendiendo el lenguaje de programación Dart.
  • 2 2. Hola Mundo en Dart
  • 3 3. Tipos de datos en Dart: números

¿Quieres aprender a desarrollar apps para iOs y Android? Empieza primero aprendiendo el lenguaje de programación Dart.

2. Hola Mundo en Dart

Veamos de la forma más sencilla cómo es el ‘Hola Mundo’ en Dart.

void main() {
  print('Hola mundo');
}

3. Tipos de datos en Dart: números

Veamos los tipos de números que tiene Dart

  • int: para declarar números enteros.

Código ejemplo:

int numero = 2;
  • double: para número con decimales.

Código ejemplo:

double d = 2.4;
  • num: la variable puede ser int o double, el intérprete elige el tipo de dato más óptimo.

Código ejemplo:

num numero = 2;

num numero = 2.34;

Carlos ZR

  • Sígueme en Twitter
  • Política de Cookies
  • Política de Privacidad
  • Aviso Legal
Usamos cookies.Aceptar Leer más
Privacy & Cookies Policy

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necesarias
Siempre activado

Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.

No necesarias

Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.