Le 2021-01-29, j'utilise Julia_1.5.3 sur VS_Code_1.52.1. Ordinateur : W10 Pro, i9-10900F. Préalables, mes billets précédents sur Julia sont supposés connus et assimilés. Documentation : Wiki Triangle de Pascal Code Julia : Sélectionner tout - Visualiser dans une fenêtre à part 123456function trianglePascal(depth::Int)::Vector{Vector{Int64}} if depth < 0 throw(DomainError(depth, "depth doit être égal ou supérieur à 0.")) end list = Vector{Vector{Int64}}() for n ...
function trianglePascal(depth::Int)::Vector{Vector{Int64}} if depth < 0 throw(DomainError(depth, "depth doit être égal ou supérieur à 0.")) end list = Vector{Vector{Int64}}() for n