Advertisement
joaopaulofcc

Untitled

Jul 28th, 2020
3,190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.17 KB | None | 0 0
  1. import 'dart:io';
  2.  
  3. void main()
  4. {
  5.     print("Informe o seu nome: ");
  6.  
  7.     String nome = stdin.readLineSync();
  8.  
  9.     print("\nOlรก, $nome! Seja bem vindo!!!");
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement