about summary refs log blame commit diff stats
path: root/baremetal/shell/cell.mu
blob: c4f3311ebe014d21ede48e7d69f0402abdf7124b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                            
type cell {
  type: int
  # type 0: pair
  left: (handle cell)
  right: (handle cell)
  # type 1: number
  number-data: float
  # type 2: symbol
  # type 3: string
  text-data: (handle array byte)
  # TODO: array, (associative) table, stream
}