minor logging adds

This commit is contained in:
Roland Conybeare 2025-07-28 15:16:11 -04:00
commit 4cd58b0443
4 changed files with 10 additions and 3 deletions

View file

@ -54,6 +54,7 @@ namespace xo {
*
* deftype point :: {x : f64, y : f64};
* deftype polar :: {arg : f64, mag : f64};
* deftype converter :: (point -> polar);
*
* def polar2rect(pt : polar) -> point {
* point(x = pt.mag * cos(arg),