This is the first app I've made with the Crystal programming language (https://crystal-lang.org/) using the Crystal compiler (https://crystal-lang.org/reference/1.3/using_the_compiler/index.html) This specific app also uses the num.cr core shard to make arrays.
Also explained in my Dev.to tutorial
git clone https://github.com/andrewrgarcia/crystal-lang_tensors-app.git
cd crystal-lang_tensors-app
shards install
Designed as a template to develop tensor (higher-order arrays) calculations.
cd crystal-firstapp
`crystal build src/crystal-firstapp.cr -o myapp` #Fast compilation
'''OR'''
`crystal build src/crystal-firstapp.cr -o myapp --release` #Compile in release mode (optimized app)
./myapp
- Fork it (https://github.com/your-github-user/crystal-lang_tensors-app/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Andrew Garcia - creator and maintainer