From baf990e65c62f42e45fe25ac385db9536d3f1788 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 27 Apr 2025 16:49:38 -0400 Subject: Update stdlib to use `print` instead of `printf` in all cases. This means bringing in fpconv to do float-to-string conversion and a few updates to integer and number methods for string formatting. --- api/integers.yaml | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'api/integers.yaml') diff --git a/api/integers.yaml b/api/integers.yaml index 4e5ec46c..f927c75f 100644 --- a/api/integers.yaml +++ b/api/integers.yaml @@ -82,28 +82,6 @@ Int.factorial: >> (10).factorial() = 3628800 -Int.format: - short: text formatting - description: > - Formats an integer as a string with a specified number of digits. - return: - type: 'Text' - description: > - A string representation of the integer, padded to the specified number of digits. - args: - i: - type: 'Int' - description: > - The integer to be formatted. - digits: - type: 'Int' - default: '0' - description: > - The minimum number of digits to which the integer should be padded. - example: | - >> (42).format(digits=5) - = "00042" - Int.hex: short: convert to hexidecimal description: > -- cgit v1.2.3