KT
Size: a a a
KT
KT
module A
using Combinatorics
include("helper.jl")
end
KT
KT
RS
module B
module A
export fun1
fun1(x) = x*x
end
import .A: fun1
export fun2
fun2(x) = fun1(x) - x
end
import .B: fun2
@show fun2(3)
ВФ
module A
using Combinatorics
include("helper.jl")
end
KT
KT
function foo( ... )
...
x = powerset([0,1,2])
....
end
KT
KT
ВФ
KT
KT
RS
module B
fun3(y) = 1 / y
module A
import ..B
export fun1
fun1(x) = x * B.fun3(x)
end
import .A: fun1
export fun2
fun2(x) = fun1(x) - x
end
import .B: fun2
@show fun2(3)
RS
KT
RS
KT
module A
using Combinatorics
include("foo.jl")
end
function foo()
powerset([0,1,2])
end