helloWorld function
void
helloWorld()
Implementation
void helloWorld() {
print("hi, i am shabeeb");
String name = "shabeeb";
print(name);
print("i am studying dart basics");
print("my favourite subject is maths");
print("my favourite cricket player is virat kohli");
}