-
Notifications
You must be signed in to change notification settings - Fork 0
/
ImportModules.jl
27 lines (26 loc) · 946 Bytes
/
ImportModules.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# include the modules so that they exist and can be used
if Sys.iswindows()
include("programs\\Utils.jl")
include("programs\\comparisons.jl")
include("programs\\Entropyfunc.jl")
include("programs\\FAfunc.jl")
include("programs\\Affinefunc.jl")
include("programs\\Atbashfunc.jl")
include("programs\\Caesarfunc.jl")
include("programs\\Substitutefunc.jl")
include("programs\\Transpositionfunc.jl")
include("programs\\Baconfunc.jl")
include("programs\\Vignerefunc.jl")
else
include("programs/Utils.jl")
include("programs/comparisons.jl")
include("programs/Entropyfunc.jl")
include("programs/FAfunc.jl")
include("programs/Affinefunc.jl")
include("programs/Atbashfunc.jl")
include("programs/Caesarfunc.jl")
include("programs/Substitutefunc.jl")
include("programs/Transpositionfunc.jl")
include("programs/Baconfunc.jl")
include("programs/Vignerefunc.jl")
end # if