Re: [julia-users] Some generic quiestions.

2014-02-10 Thread Kevin Squire
> > d) Does my module has to have the same name as the file ie: > (Matematicas.jl > > / module Matematicas)? > > No, there is no relation between file-name and module. Also a module > can be spread over several files which are then included, see again > http://docs.julialang.org/en/latest/manual/m

Re: [julia-users] Some generic quiestions.

2014-02-10 Thread Ivar Nesje
a) Because Julia does not (yet) have an equivalent to the python docstrings, we do not have an equivalent to the doctest module. We have however a Sphinx extension that we use for our manual and standard library documentation that contains a rudimentary

Re: [julia-users] Some generic quiestions.

2014-02-10 Thread Mauro
I'm not much of an expert but here my answers. Maybe someone more knowledgeable could check/comment on the answers? > a) Is there an equivalent to Python's doctest.testmod() in > Julia? http://docs.python.org/2/library/doctest.html[1] No. Julia comes with a rudimentary tasting framework: Base.

[julia-users] Some generic quiestions.

2014-02-09 Thread Ismael VC
I have some quiestions, here is my example script: https://github.com/Ismael-VC/Club_TESCI/blob/master/CODIGO/python_code/matematicas.py And here is what I have achieved: https://github.com/Ismael-VC/Club_TESCI/blob/master/CODIGO/julia_code/Matematicas.jl a) Is there an equivalent to Python's