-- SPDX-FileCopyrightText: 2022 Serokell <https://serokell.io/>
--
-- SPDX-License-Identifier: MPL-2.0
{- | Exports the default interpolator + Show-oriented rendering modes
>>> data Ty = Ty { val :: Int }
>> deriving stock Show
>>>
>>> let t = Ty 5
>>> in [int||Value is #{t}]
"Value is Ty {val = 5}"
-}
module Text.Interpolation.Nyan.Show
( int
, module RModes
) where
import Text.Interpolation.Nyan (int)
import Text.Interpolation.Nyan.RModes.CommonExtra as RModes
import Text.Interpolation.Nyan.RModes.Show as RModes