mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-23 02:59:52 +00:00
18 lines
278 B
Julia
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
|