ab5tract / Terminal-Print

Terminal::Print is a pure Raku layer for printing to terminal screens
Other
25 stars 18 forks source link

Support passing a cell hash to change-cell #72

Closed jjatria closed 4 years ago

jjatria commented 4 years ago

Although Terminal::Print::Grid supports calling

$grid.change-cell( $x, $y, %cell )

this was not supported from the parent Terminal::Print object, which only accepted

T.change-cell( $x, $y, $string )

Assuming this was an oversight, this patch adds support for this.