https://github.com/exercism/julia
Exercism exercises in Julia.
https://github.com/exercism/julia
community-contributions-accepted exercism-track julia
Last synced: 3 months ago
JSON representation
Exercism exercises in Julia.
- Host: GitHub
- URL: https://github.com/exercism/julia
- Owner: exercism
- License: mit
- Created: 2016-11-21T01:58:59.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T10:55:36.000Z (11 months ago)
- Last Synced: 2024-05-23T08:58:19.778Z (11 months ago)
- Topics: community-contributions-accepted, exercism-track, julia
- Language: Julia
- Homepage: https://exercism.org/tracks/julia
- Size: 1.83 MB
- Stars: 64
- Watchers: 11
- Forks: 70
- Open Issues: 69
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Exercism Julia Track

Exercism exercises in Julia.
## Contributing Guide
Please see the [contributing guide](CONTRIBUTING.md).
Please read and adhere to the [Code of Conduct](CODE_OF_CONDUCT.md).
## Code Formatting Guidelines
Your example solutions should adhere to the following guidelines:
- 4 spaces per indentation level, no tabs
- use whitespace to make the code more readable
- no whitespace at the end of a line (trailing whitespace)
- comments are good, especially when they explain the algorithm
- use upper camel case convention for type names
- use lower case for method names, add underscores if necessaryThese are based on the [General Formatting Guidelines](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md#general-formatting-guidelines-for-julia-code-contributions) for contributions to the Julia codebase.