import 'dart:html';
main() {
var value = querySelector('input').value;
print('The value of the input is: $value');
}
/// Since Dart 3.12 you can use 'inspect'
/// Send a reference to myObject to any attached debuggers.
/// Debuggers may open an inspector on the myObject object.
inspect(myObject);
void main() {
var test = "test";
print('test = $test');
}