just realized there are no lists, only arrays :(

This commit is contained in:
Maxime Vorwerk
2023-08-25 16:18:57 +02:00
parent 82afad9d57
commit b9ccf5254e
4 changed files with 42 additions and 37 deletions

View File

@@ -1,6 +1,6 @@
include("ImmutableOrientedShape.jl")
function main(i::Int8)
S = Stack{Int}();
function main(i::Int64)
D = Dict{ImmutableOrientedShape}()
S = Stack{Int64}();
end
main(Int8(4))