LogoLogo
About
  • Home
  • Guides
  • BDK
  • REST API
  • Release Notes
  • Getting Started
    • What is Kognitos?
    • Logging In
    • Account Setup
    • Quick Start Guide
    • Core Concepts
  • Writing Automations
    • Automation Basics
      • Defining Data
      • Comments
      • Conditionals
      • Keywords
      • Loops
    • Calling Other Processes
      • Calling A Subprocess
      • Invoking a Subprocess
      • Starting Parallel Runs
    • Validating Data
    • Context Based Learning
    • Using the Debugger
  • Books
  • Automation Management
    • Scheduled Processes
    • Email Triggers
  • Enterprise Dashboard
  • 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 1 month ago

Was this helpful?