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

2. Variables and Data Types

2.1 What are Variables?

Variables are like empty boxes where you can keep information. Each box has a name so you can find it later. Each box also has a 'type' that tells the computer what kind of thing is inside.

Number age = 15.
Sentence name = "Alex".
Displaynl(name).
Displaynl(age).

2.2 The Four Box Types

We have four kinds of boxes you can use: Number (for all numbers), Letter (for one single character), Sentence (for words and text), and Logic (for True or False values).

Number myAge = 12.
Number piValue = 3.14.
Letter myGrade = 'A'.
Sentence myPet = "Dog".
Logic likePizza = True.
// You can create a box without filling it right away.
Number emptyBox.

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 ❤️