Files
JuliaFEM.jl/src/JuliaFEM.jl
T
2015-06-06 17:48:02 +03:00

18 lines
278 B
Julia

# This file is a part of JuliaFEM. License is MIT: https://github.com/ovainola/JuliaFEM/blob/master/README.md
module JuliaFEM
# package code goes here
type Node
node_id
coords
end
type Element
element_id
node_ids
function test()
return 1
end
end # module