DEV Community

Awaisoop
Awaisoop

Posted on

Input In Dart Language

import 'dart:io';

void main() {
var name;

name = stdin.readLineSync(); // Import Libraay Alt+Enter
print(name); // it will print
}

Which input u will give it . it will simply print it but just String .....

Top comments (0)