aboutsummaryrefslogtreecommitdiff
path: root/module/text/numbers/sv.scm (unfollow)
Commit message (Collapse)Author
2023-11-16Cleanup swedish word numbers.Hugo Hörnquist
2023-11-16Fix swedish ordinals.Hugo Hörnquist
2023-11-06Fix wordy numbers in swedish!Hugo Hörnquist
2023-11-06Fix API for each-string.Hugo Hörnquist
2023-11-06Cleanup in (text numbers sv)Hugo Hörnquist
2023-11-06Fixes for swedish number->string-{ordinal,cardinal}.Hugo Hörnquist
number->string-cardinal now passes all tests number->string-ordinal now only fails for some really large numbers.
2023-11-06Forward extra kw args to number->string-{ordinal,cardinal}.Hugo Hörnquist
2022-06-23Centralize (almost) all exports to :export in define-module.Hugo Hörnquist
2022-06-13Remove custom let*.Hugo Hörnquist
While it was nice, the most important part was the multi-valued let from srfi-71 (which is implemented in srfi-71)). The minor pattern matching structures could often be replaced with car+cdr, or a propper match.
2022-01-31Move stuff from calp/util to hnh/util.Hugo Hörnquist
This is the first (major) step in splitting the generally useful items into its own library.
2020-08-28Move text numbers into sv-submodule, create en-module.Hugo Hörnquist
2020-08-24Move util modules into calp module..Hugo Hörnquist
2020-08-23Repair tests.Hugo Hörnquist
2020-06-13Add 'a-form' to my ordinals.Hugo Hörnquist
2020-06-01Break text procedures into modules.Hugo Hörnquist
2020-05-23Made *prodid* global.Hugo Hörnquist
2020-05-04Add true-string-length.Hugo Hörnquist
2020-04-07Minor notes and fixes.Hugo Hörnquist
2020-04-06Add multiple new text formatting procedures.Hugo Hörnquist
2019-12-23Move open-{input,output}-port to (util io).Hugo Hörnquist
2019-05-08Add flags for just running the text flower.Hugo Hörnquist
It's twisted if one program should do many things, or just a single thing. If we assume that this program does two things: reading calendar files, and writing output, then it should be ok to allow any of those parts to run independentally of the other. Making it ok to just run the text flower.
2019-04-30Replace 'when' and 'unless'.Hugo Hörnquist
2019-04-24Remove take-drop-while, span already in SRFI-1.Hugo Hörnquist
2019-04-24Add {mod,set}/r!Hugo Hörnquist
`set!' by default has an unspecified return value. But that haven't stopped me from using that (set! (acc obj) val) returns the value returned by the internal setter function. This change requires you to explicitly request the returning version of set, which returns the value of the last set field.
2019-04-24Improve text layout code.Hugo Hörnquist
2019-04-23Move some procedures.Hugo Hörnquist
2019-04-23Replace text-flow function.Hugo Hörnquist