diff options
| author | Paulo Custodio <pauloscustodio@gmail.com> | 2021-07-06 21:42:21 +0100 |
|---|---|---|
| committer | Paulo Custodio <pauloscustodio@gmail.com> | 2021-07-06 21:42:21 +0100 |
| commit | 7e18a5b7b098b8448f40e2694a60bfbda53cfd3b (patch) | |
| tree | e1779aaddf5b046e0381a30063e73309209480cd /challenge-104 | |
| parent | 5aca4db735e55e7b8cfb535a0edc2b9874e368c0 (diff) | |
| download | perlweeklychallenge-club-7e18a5b7b098b8448f40e2694a60bfbda53cfd3b.tar.gz perlweeklychallenge-club-7e18a5b7b098b8448f40e2694a60bfbda53cfd3b.tar.bz2 perlweeklychallenge-club-7e18a5b7b098b8448f40e2694a60bfbda53cfd3b.zip | |
Remove unnecessary trim(str(n))
Diffstat (limited to 'challenge-104')
| -rw-r--r-- | challenge-104/paulo-custodio/basic/ch-1.bas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-104/paulo-custodio/basic/ch-1.bas b/challenge-104/paulo-custodio/basic/ch-1.bas index d9b758a281..52675c2fba 100644 --- a/challenge-104/paulo-custodio/basic/ch-1.bas +++ b/challenge-104/paulo-custodio/basic/ch-1.bas @@ -28,6 +28,6 @@ end function dim i as integer, n as integer n=val(command(1)) for i=0 to n-1 - print trim(str(fusc(i)));" "; + print fusc(i);" "; next print |
