This commit is contained in:
沈瑗杰 2022-05-04 19:17:47 +08:00
parent baa00a3b0c
commit 6bfcc0bafd
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
struct part
x::Float64
y::Float64
father::Vector{pointer, Nothing}
children::Vector{(pointer, Nothing)}
end
command_tree = Dict(
)
function command_parser(command_tree, command::String) :: Nothing
end

View File