I would suggest something simple first. Here is an example:
CLS
INPUT "whatever you want to put here"X$
Print "Hello ";X$
this is an example of a hello world program. If you have anymore questions, feel free to ask me. Good luck!
CLS clears text from the screen, Input waits for the user to type something and click enter, Print displays text onto the screen, the semicolon after the quotation marks and the X$ makes the same print command display what the user had just typed. It is best to put "What is your name" inside the quotation marks in the input commmand; the "?" will automatically be put in. I will make an example soo