Skip to content

Instantly share code, notes, and snippets.

@goandreus
Created July 10, 2019 04:09
Show Gist options
  • Save goandreus/7467f011a54c445ebf6fd3e690e1bb9a to your computer and use it in GitHub Desktop.
Save goandreus/7467f011a54c445ebf6fd3e690e1bb9a to your computer and use it in GitHub Desktop.
void main(){
// Numeros
int empleados = 10;
double pi = 3.141615;
double numero = 1.0;
print('$empleados $pi $numero');
// String -Cadenas de caracteres
String nombre = 'Hola';
print ('$nombre');
print(nombre[0]);
print(nombre.length - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment