void main() { var given_str = "hello"; print(given_str * 4); print(given_str * 0); print(given_str * -1); }