DEV Community

Saravanan
Saravanan

Posted on

Day-3 simple return model



class Bmw
{
public static void main(String args[])
{

Bmw car = new Bmw();
car.go_to_race();

}
public  int go_to_race()
{
System.out.println("we are going to race");
  return 700000;
}
}

- 

out put:

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5o17j5q39shuo7s4ec34.png)
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay