added julia image and example function
This commit is contained in:
9
examples/functions/func.jl
Normal file
9
examples/functions/func.jl
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
struct Input
|
||||
a::Number
|
||||
b::Number
|
||||
end
|
||||
|
||||
fx = function(input::Input)
|
||||
return input.a + input.b
|
||||
end
|
||||
Reference in New Issue
Block a user