Skip to main content
added 4 characters in body
Source Link
sergiol
  • 4.4k
  • 1
  • 17
  • 37

Tcl, 3126 bytes

proc R {x\ n {format %.${n}f $x}}

Try it online!Try it online!


Tcl, 3126 bytes

proc R {x\ n {format %.*f $n $x}}

Try it online!Try it online!

Tcl, 31 bytes

proc R x\ n {format %.${n}f $x}

Try it online!


Tcl, 31 bytes

proc R x\ n {format %.*f $n $x}

Try it online!

Tcl, 26 bytes

{x\ n {format %.${n}f $x}}

Try it online!


Tcl, 26 bytes

{x\ n {format %.*f $n $x}}

Try it online!

added 309 characters in body
Source Link
sergiol
  • 4.4k
  • 1
  • 17
  • 37

Tcl, 31 bytes

proc R x\ n {format %.${n}f $x}

Try it online!


Tcl, 31 bytes

proc R x\ n {format %.*f $n $x}

Try it online!

Tcl, 31 bytes

proc R x\ n {format %.*f $n $x}

Try it online!

Tcl, 31 bytes

proc R x\ n {format %.${n}f $x}

Try it online!


Tcl, 31 bytes

proc R x\ n {format %.*f $n $x}

Try it online!

Source Link
sergiol
  • 4.4k
  • 1
  • 17
  • 37

Tcl, 31 bytes

proc R x\ n {format %.*f $n $x}

Try it online!