https://github.com/rurumimic/julia
for numerical analysis and computational science
https://github.com/rurumimic/julia
julia
Last synced: 16 days ago
JSON representation
for numerical analysis and computational science
- Host: GitHub
- URL: https://github.com/rurumimic/julia
- Owner: rurumimic
- License: mit
- Created: 2022-05-24T04:14:06.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-06T15:46:30.000Z (about 4 years ago)
- Last Synced: 2025-01-03T08:29:37.836Z (over 1 year ago)
- Topics: julia
- Language: Julia
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Julia
- [Julia.org](https://julialang.org/)
- [Downloads](https://julialang.org/downloads/)
- [Documentation](https://docs.julialang.org/)
- [Style guide](https://docs.julialang.org/en/v1/manual/style-guide/)
- [Discourse](https://discourse.julialang.org/)
- [Pkg.jl](https://pkgdocs.julialang.org/)
- and:
- [Revise.jl](https://github.com/timholy/Revise.jl)
---
## [documentation](docs/README.md)
- Install
- Package and Module
- Tools
- Basic and Advance
---
## Run
```jl
@rurumimic ➜ /workspaces/julia (master ✗) $ julia
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.7.2 (2022-02-06)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
julia> 1 + 2
3
julia> ans
3
```
### Module
[HelloWorld.jl](./src/HelloWorld/src/HelloWorld.jl)
```jl
julia> include("./src/HelloWorld/src/HelloWorld.jl")
Main.HelloWorld
julia> using .HelloWorld
julia> hello
"Hello, World!"
julia> HelloWorld.greeting(hello)
Hello, World!
```
```jl
julia> @__MODULE__
Main
julia> varinfo()
name size summary
–––––––––––––––– ––––––––––– ––––––––––––––––––
Base Module
Core Module
HelloWorld 3.083 KiB Module
InteractiveUtils 252.883 KiB Module
Main Module
ans 21 bytes 13-codeunit String
```