Add initial tests for Julia language indentation

This commit is contained in:
Ronan Arraes Jardim Chagas 2023-10-28 16:47:18 -03:00 committed by Christian Clason
parent 639c22c52c
commit fc3bfd8f89
4 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,13 @@
function test(a::Number,
b::Float64,
c::Union{Float64, Integer},
d::Bool)
end
function test(
a::Number,
b::Float64,
c::Union{Float64, Integer},
d::Bool
)
end