_Added in 3.9_ */hrename * Renames a [[/hmake|hash table]]. *Parameters*
- The table name to rename. - The new table name. *Example*
alias testrename {
  hmake table
  hadd table item value
  echo -sg $hget(table, item)
  hrename table newtable
  echo -sg $hget(newtable, item)
}