pyret-lang icon indicating copy to clipboard operation
pyret-lang copied to clipboard

internal error

Open shriram opened this issue 3 years ago • 0 comments

This program reliably produces an internal error on the second print:

import tables as T
lst-in = [list: "a", "b", "c"]
lst-freq = [list: 1, 1, 1]
fake-table = [T.table-from-columns:
  {"title"; lst-in},
  {"freq"; lst-freq}]

print(fake-table) #returns <table>
print(fake-table.all-rows()) #returns the internal errors message

Credit Milan Capoor for finding it.

shriram avatar Sep 29 '22 01:09 shriram