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