Difference between revisions of "MC-Basic:REM/zh-hans"
(Created page with "{{Languages}} == 缩写 == == 格式 == REM This is a comment<br> ‘ This is also a comment == 适用版本 == 所有版本 == 描述 == 注释可以自由插入代码中...") |
|||
Line 36: | Line 36: | ||
' 这是一条注释行<br> | ' 这是一条注释行<br> | ||
− | Move a1 156.7 | + | Move a1 156.7 rem Move axis a1 to position 156.7<br> |
− | Move a2 0? | + | Move a2 0? ' Comment with an apostrophe |
== 参见 == | == 参见 == |
Revision as of 09:04, 27 April 2017
语言: | [[::MC-Basic:REM|English]] • [[::MC-Basic:REM/zh-hans|中文(简体)]] |
---|
缩写
格式
REM This is a comment
‘ This is also a comment
适用版本
所有版本
描述
注释可以自由插入代码中,或者独立行或在代码行后面。注释可以以REM关键字开始或者通过符号('),直到行结束。
类型
取值范围
单位
默认值
使用范围
任务
限制
最大长度限制为 16,384 字符。
例子
REM这是一条注释行
' 这是一条注释行
Move a1 156.7 rem Move axis a1 to position 156.7
Move a2 0? ' Comment with an apostrophe