Code not working
You are creating a social networking application and want to add post creation functionality. When a user creates a post, the text "New post" should be automatically displayed so that the user can add the text he wants to share. You are given a program that declares a Post class with a private text element and a ShowPost () method that outputs the content. Add to the class: - a constructor that outputs "New post" when called, - the Text property, which allows you to get and set the value of the text field. After you make changes to the program so that it works correctly, in main the program will receive the publication text from the user, create a publication object, assign the resulting value to the text field, and display it. Sample Input Data Hello! Sample Output Data New post Hello! My code : https://code.sololearn.com/cI5PHhLRq2k8/?ref=app But he doesn't work what is the problem?