We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
구조
{ 코드 }
예시
{ print("Hello, World!"); };
# 한번 실행 execute(<Commands 클래스>) # 여러 번 실행 repeat(반복 횟수, <Commands 클래스>)
alloc say_hello = { print("Hello, World"); }; alloc exclamation_point = { print("!"); }; execute(say_hello); repeat(5, exclamation_point); #결과: Hello, World!!!!!