17 lines
411 B
Text
17 lines
411 B
Text
/-
|
|
Copyright (c) 2020 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
Author: Leonardo de Moura
|
|
-/
|
|
prelude
|
|
import Init.Data.Format.Basic
|
|
import Init.Data.ToString.Macro
|
|
|
|
namespace Std
|
|
|
|
syntax:max "f!" interpolatedStr(term) : term
|
|
|
|
macro_rules
|
|
| `(f! $interpStr) => do interpStr.expandInterpolatedStr (← `(Format)) (← `(Std.format))
|
|
|
|
end Std
|