Given that a table is not an ordered collection, how is it possible to get any first element?
As an alternative you could implement it as an array of tuples for example:
var a = @[ (1,"one"), (2,"two") ]
Run
and then you could easily retrieve a[0].
