LogoLogo
About
  • Guides
  • BDK
  • REST API
  • Release Notes
  • Getting Started
    • Kognitos Documentation
    • What is Kognitos?
    • Logging In
    • Account Setup
    • Quick Start Guide
    • Core Concepts & Definitions
  • Writing Automations
    • Automation Basics
      • Defining Data
      • Comments
      • Conditionals
      • Keywords
      • Loops
    • Automation Procedures
      • Charts
      • Date and Time
      • Department Boxes
      • Excel Files
      • PDF Files
      • JSON Files
      • Files and Documents
      • Image Manipulation
      • LLMs
      • Numbers
      • SFTP
      • Tables
      • Text
  • Calling Other Processes
    • Calling A Subprocess
    • Invoking a Subprocess
    • Starting Parallel Runs
  • Validating Data
  • Using the Debugger
  • Books (Intergrations)
    • Books
      • Library: All Books
      • First Edition Books
      • BDK Books
    • Book Development Kit
  • Automation Management
    • Context Based Learning
    • Email Triggers
    • Enterprise Dashboard
  • Scheduled Processes
  • Starring Data
  • Exception Handling
    • Providing Guidance
    • Resolving Common Exceptions
    • Learnings
  • Account Management
    • API Keys
    • User Roles & Permissions
Powered by GitBook
On this page
  • What is a Comment?
  • How to Add a Comment
  • ⚠️ Single-Line Comments Only

Was this helpful?

Export as PDF
  1. Writing Automations
  2. Automation Basics

Comments

Use comments to add notes or disable parts of your automation.

What is a Comment?

A comment is a line in an automation that is skipped during execution. Comments are used to add notes and annotations. Additionally, they can be used to disable a part of your automation temporarily.

How to Add a Comment

To add a comment, use the # symbol at the beginning of a line. For example:

# This is a comment and will be ignored
say "Welcome to Kognitos!"

⚠️ Single-Line Comments Only

Currently, the platform only supports single-line comments. If you want to add multiple lines of comments, you’ll need to use the # symbol on each line. For example:

# This is the first line of a multi-line comment
# This is the second line of the comment
# This is the third line of the comment

Last updated 3 months ago

Was this helpful?