Skip to content

Commit

Permalink
implement number->string
Browse files Browse the repository at this point in the history
  • Loading branch information
s-kybound committed Apr 13, 2024
1 parent 906141b commit 64a2d18
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/stdlib/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1036,6 +1036,9 @@ export const string$45$$62$number: Function = (s: string) => {
}
};

export const number$45$$62$string: Function = (n: core.SchemeNumber) =>
n.toString();

export const string$45$$62$list: Function = (s: string) => {
let result = null;
for (let i = s.length - 1; i >= 0; i--) {
Expand Down

0 comments on commit 64a2d18

Please sign in to comment.