Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,20 @@
|
|||
Buf_Switch(Buf_Free)
|
||||
Ins_Text("Hello,How,Are,You,Today")
|
||||
|
||||
// Split the text into text registers 10, 11, ...
|
||||
BOF
|
||||
#1 = 9
|
||||
Repeat(ALL) {
|
||||
#1++
|
||||
#2 = Cur_Pos
|
||||
Search(",", ADVANCE+ERRBREAK)
|
||||
Reg_Copy_Block(#1, #2, Cur_Pos-1)
|
||||
}
|
||||
Reg_Copy_Block(#1, #2, EOB_Pos)
|
||||
|
||||
// Display the list
|
||||
for (#3 = 10; #3 <= #1; #3++) {
|
||||
Reg_Type(#3) Message(".")
|
||||
}
|
||||
|
||||
Buf_Quit(OK)
|
||||
Loading…
Add table
Add a link
Reference in a new issue