14 lines
159 B
Plaintext
14 lines
159 B
Plaintext
|
import Mathlib.Data.Real.Basic
|
|||
|
|
|||
|
notation "ℝ²" => ℝ × ℝ
|
|||
|
|
|||
|
namespace Real
|
|||
|
|
|||
|
/--
|
|||
|
The area of a unit circle.
|
|||
|
-/
|
|||
|
axiom pi : ℝ
|
|||
|
|
|||
|
notation "π" => pi
|
|||
|
|
|||
|
end Real
|