2

I am using sikuli IDE for automation. In sikuli IDE, we can put single line comment as '#'.

But I couldn't find any way to put multi-line(block) comment in sikuli IDE. I am referring sikuli official documentation site http://doc.sikuli.org.

I have tried
/*

*/

but it does not work.

Ripon Al Wasim
  • 36,924
  • 42
  • 155
  • 176
Gitanjali
  • 125
  • 1
  • 2
  • 6

2 Answers2

2

Currently commenting whole blocks is not available in Sikuli IDE, but there is an open request for such functionality in Sikuli 1.1.0. This is the source.

Eugene S
  • 6,709
  • 8
  • 57
  • 91
1

Based on Sikuli documentation site section 'How to use this document', one can use any syntax of the Python language in Sikuli script.

Hence, the link for Python's multi-line comment may help.

'''
This is a multiline
comment.
'''
Community
  • 1
  • 1
Dhanu Gurung
  • 8,480
  • 10
  • 47
  • 60