https://github.com/d-malex/p3-clojure
Studying Programming III with Prof. Master Diego Corsi, at the INSPT-UTN. During the first semester learning functional programming with Clojure. List of exercises. ----------- Cursando Programación III con el Prof. Master Diego Corsi, en el INSPT-UTN. Durante el primer semestre aprendiendo programación funcional con Clojure. Lista de ejercicios.
https://github.com/d-malex/p3-clojure
clojure funcional-programming
Last synced: 4 months ago
JSON representation
Studying Programming III with Prof. Master Diego Corsi, at the INSPT-UTN. During the first semester learning functional programming with Clojure. List of exercises. ----------- Cursando Programación III con el Prof. Master Diego Corsi, en el INSPT-UTN. Durante el primer semestre aprendiendo programación funcional con Clojure. Lista de ejercicios.
- Host: GitHub
- URL: https://github.com/d-malex/p3-clojure
- Owner: D-Malex
- Created: 2024-09-04T01:08:20.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-04T01:39:07.000Z (9 months ago)
- Last Synced: 2024-11-12T14:16:37.536Z (6 months ago)
- Topics: clojure, funcional-programming
- Language: Clojure
- Homepage:
- Size: 3.08 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# P3-Clojure
## English - Windows
Studying Programming III with Prof. Master Diego Corsi, at the INSPT-UTN. During the first semester learning functional programming with Clojure. List of exercises.To try each of the exercises I recommend downloading [Visual Studio Code](https://code.visualstudio.com/download) and having previously installed [Java](https://www.java.com/download/ie_manual.jsp ).
Open the VS-code in a folder with the file you want to test, such as `1.clj` and the `clojure-1.8.0.jar` file, this is the **REPL** of Clojure, then open an integrated terminal (optional but recommended that it be integrated for convenience), `Ctrl + ñ`.
And in the terminal run the command:
```
Java -jar clojure-1.8.0.jar
```
And then run the command:
```
(load-file "1.clj")
```## Español - Windows
Cursando Programación III con el Prof. Master Diego Corsi, en el INSPT-UTN. Durante el primer semestre aprendiendo programación funcional con Clojure. Lista de ejercicios.Para provar cada uno de los ejercicios recomiendo descargar [Visual Studio Code](https://code.visualstudio.com/download) y tener instalado previamente [Java](https://www.java.com/download/ie_manual.jsp).
Abrir el VS-code en una carpeta con el archivo que se desee probar como por ejemplo el `1.clj` y el archivo `clojure-1.8.0.jar`, este es el **REPL** de Clojure, luego abrir una terminal integrada (opcional pero recomendable que sea integrada por comodidad), `Ctrl + ñ`.
Y en la terminal ejecutar el comando:
```
Java -jar clojure-1.8.0.jar
```
Y luego ejecutar el comando:
```
(load-file "1.clj")
```