cancel
Showing results for 
Search instead for 
Did you mean: 

Re: [personal kdb+] How to create and update new dictionary for every

konq
New Contributor II
Try to think of this in terms of tables. Table is a list of dictionaries:
q)true:100#enlist"Success"
q)newdict:([]true)
q)first newdict
true| "Success"
q)false:100#enlist"Error"
q)newdict,:([]true:false)
q)last newdict
true| "Error"
  Konstantin


0 REPLIES 0