# MIT License, Copyright (c) 2023 Marvin Borner # this is just a reference to the ternary implementation # read the wiki for the reasoning of using balanced ternary by default :import std/List . :input std/Number/Ternary # the following functions are only here because of recursive imports of list/ternary # converts a list of digits into a balanced ternary number from-digits foldl [[(+10) ⋅ 1 + 0]] (+0) :test (from-digits ((+4) : ((+2) : {}(+0)))) ((+420)) :test (from-digits empty) ((+0))