You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nim>import struct
nim>var a = unpack(">3I", "Hello World ")
nim> a
@[1214606444, 1864390511, 1919706144] ==typeseq[StructNode]
nim> pack(">3I", a)
Horld ==typestring
Also it would be a useful feature to pass a seq[int32] to pack.