GOCO IDE
  • Home
  • Docs
Download

Documentation

Chapter 1: BasicsChapter 2: Variables & TypesChapter 3: Input and OutputChapter 4: Math and OperatorsChapter 5: Making DecisionsChapter 6: Repeating Parts (Loops)Chapter 7: FunctionsChapter 8: Arrays (Lists)Chapter 9: Standard Libraries

3. Talking to the User

3.1 Showing Words on Screen

To print things for the user to see, we use Display. If we want to print and then move to a new line, we use Displaynl.

Display("Hello, ").
Displaynl("my friend.").

3.2 Asking for Answers

Sometimes you want the user to type something. You can use Input to capture what they type and keep it in a variable box.

Sentence userName.
Display("What is your name: ").
Input(userName).
Displaynl("Nice to meet you, " + userName).

Contact Us

+91 93269 63378kancorp.inc@outlook.com
📍KanCorp Inc, India

Quick Links

  • Home
  • Docs
  • Download IDE

Stay Updated

Subscribe to get updates on new features and learning resources!

© 2026GOCO IDE™. All rights reserved. Made with ❤️