blob: 41ddf380acc50da9f592246e194dabc7ac03a9ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# MIT License, Copyright (c) 2024 Marvin Borner
# convert bases to other bases
:import std/Number/Unary U
:import std/Number/Ternary T
# converts unary numbers to ternary
unary→ternary [0 T.inc (+0)] ⧗ Unary → Ternary
:test (unary→ternary (+0u)) ((+0))
:test (unary→ternary (+2u)) ((+2))
# converts ternary numbers to unary
ternary→unary [T.apply 0 U.inc (+0u)] ⧗ Ternary → Unary
:test (ternary→unary (+0)) ((+0u))
:test (ternary→unary (+2)) ((+2u))
|