Вопрос

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.

Это было полезно?

Решение

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.

Другие советы

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.
'''
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top