Skip to content

Commit

Permalink
Update 6_MultDisAmbiguity.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
alanedelman committed Sep 25, 2024
1 parent f476143 commit 83f5319
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions notebooks/6_MultDisAmbiguity.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ md"""
"""

# ╔═╡ f01c27c9-e246-4a11-a856-5e1103b541db
f(a::Number, b::Integer) = "(ℝ , ℤ)"
f(a::Real, b::Integer) = "(ℝ , ℤ)"

# ╔═╡ 83a1215f-93fe-4844-8cd8-2243cd4f2925
f(a::Integer, b:: Number) = "(ℤ , ℝ)"
f(a::Integer, b:: Real) = "(ℤ , ℝ)"

# ╔═╡ e5d21d57-856e-4c15-87fc-82471afceb35
f(a::Number, b:: Number) = "(ℝ , ℝ)"
f(a::Real, b:: Real) = "(ℝ , ℝ)"

# ╔═╡ 7d98b956-7445-4ec1-8fff-db27ff7ab3dd
f(1.0,1.0)
Expand Down

0 comments on commit 83f5319

Please sign in to comment.