import 'dart:html';
main() {
var value = querySelector('input').value;
print('The value of the input is: $value');
}
void main() {
var test = "test";
print('test = $test');
}
// Syntaxfinal coflutter = 'Coflutter';
print('Hello ${coflutter}. Your name has ${coflutter.length} characters.');
// Hello Coflutter. Your name has 9 characters.