Skip to content

Commit cff7a6e

Browse files
committed
Drop spurious duplicate definition of fmt(char)
1 parent 51274c1 commit cff7a6e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

wybelibs/wybe/char.wybe

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ pub def {test} chr(i:int):_ = foreign lpvm cast(i) where { 0 <= i ; i <= 255 }
3939
pub def {test} chr(i:count):_ = foreign lpvm cast(i) where { i <= 255:count }
4040

4141
## Formatting
42-
pub def fmt(x:_):string = string(x)
43-
4442
pub def fmt(x:_):string = string(x)
4543
pub def fmt(x:_, minlength:int):string = fmt(x, minlength, ' ')
4644
pub def fmt(x:_, minlength:int, fill:_):string =

0 commit comments

Comments
 (0)