mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
* move formatfloat out of system * fixes doc * Update changelog.md * careless * fixes * deprecate system/formatfloat * better handling
7 lines
171 B
Nim
7 lines
171 B
Nim
when not defined(nimPreviewSlimSystem):
|
|
import std/formatfloat
|
|
export formatfloat
|
|
{.deprecated: "use `std/formatfloat`".}
|
|
else:
|
|
{.error: "use `std/formatfloat`".}
|