An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        

# Exercism Julia Track

![Exercise CI](https://github.com/exercism/julia/workflows/Exercise%20CI/badge.svg)
![Configlet](https://github.com/exercism/julia/workflows/Configlet/badge.svg)

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 necessary

These 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.