User bio
404 bio not found
Member since Jan 20, 2016
Posts:
Replies:
Hi Armin, which version of the Embedded Git plugin is running on your server? If you have IRIS terminal access, the following command will show the version:
zpm "list-installed git-source-control"
Here's some sample code from an open-source project if you'd like to copy:
https://github.com/intersystems/git-source-control/blob/82d740af3ac035fe...
Certifications & Credly badges:
Pravin has no Certifications & Credly badges yet.
Global Masters badges:







Followers:
Following:
Pravin has not followed anybody yet.
Try the following:
set mylist = "" for i = 1:1:5 { set item = "item"_i set mylist = mylist _ $ListBuild(item) } zw mylist
$Listbuild lists have a separator that includes the length of the data in the next item of the list. This is why your original code wasn't working - $listbuild(mylist, item) would make a new list with two elements where the first item was the original list.