added julia image and example function

This commit is contained in:
matbesancon
2017-11-19 18:27:18 -05:00
parent 7c1fb6a7f2
commit 9c07efd663
6 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
struct Input
a::Number
b::Number
end
fx = function(input::Input)
return input.a + input.b
end