如何用红色换行符添加新数据块?

时间:2018-09-27 14:08:36

标签: rebol red

我尝试过:

Intent i = getIntent();
if (i != null){
    int position = i.getIntExtra("The_Position", -1);
}

我知道

data: [a b c]
new-line tail data true
append data [d e f]

不是我所期望的:

[a b c d e f]

1 个答案:

答案 0 :(得分:2)

换行标记是值位槽的属性,而不是序列的属性。 new-line tail data true未设置此标记,因为系列的tail不包含任何值位(但back tail却没有)。

>> head new-line tail [a b c] on
== [a b c]
>> head new-line back tail [a b c] on
== [a b 
    c
]
>> append [a b c] new-line [d e f] on
== [a b c 
    d e f
]