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

9. Helpful Built-In Tools

9.1 Math and Strings Tools

GOCO comes with special built-in tools. You type 'Import' to use them. 'math' does hard calculations. 'strings' can change text easily.

Import math.
Import strings.
// Using math tools
Displaynl(math.Sqrt(16)).
Displaynl(math.Max(5, 10)).
// Using string tools
Displaynl(strings.Upper("apple")).
Displaynl(strings.Length("apple")).

9.2 Array Tools

The 'arrays' library helps you fix and organize your arrays quickly.

Import arrays.
Number[] scores = [10, 5, 20].
arrays.Sort(scores).
arrays.Push(scores, 30).
Displaynl(arrays.Sum(scores)).

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