- Clojure for Java Developers
- Eduardo Díaz
- 204字
- 2021-07-16 09:49:46
Getting to know Clojure
Before getting started with Clojure, you should know some of its features and what it shares with Java.
Clojure is a programming language that inherits a lot of characteristics from Lisp. You might think of Lisp as that weird programming language with all the parentheses. You need to keep in mind that Clojure chooses to embrace functional programming. This makes it very different from current mainstream programming languages. You will get to know about immutable data structures and how to write programs without changing variable values.
You will also find that Clojure is a dynamic programming language, which makes it a little easier and faster to write programs than using statically typed languages. There is also the concept of using a REPL, a tool that allows you to connect to a program running environment and change code dynamically. It is a very powerful tool.
At last, you will find out that you can convert Clojure to anything you like. You can create or use a statically typed system and bend the language to become what you like. A good example of this is the core.typed
library, which allows you to specify the type information without adding support to the compiler.
- Java EE 6 企業(yè)級(jí)應(yīng)用開(kāi)發(fā)教程
- Instant Typeahead.js
- Visual Basic程序設(shè)計(jì)教程
- Python神經(jīng)網(wǎng)絡(luò)項(xiàng)目實(shí)戰(zhàn)
- Backbone.js Blueprints
- OpenShift在企業(yè)中的實(shí)踐:PaaS DevOps微服務(wù)(第2版)
- iOS編程基礎(chǔ):Swift、Xcode和Cocoa入門(mén)指南
- Getting Started with LLVM Core Libraries
- GameMaker Essentials
- OpenCV with Python By Example
- Vue.js應(yīng)用測(cè)試
- Kotlin Programming By Example
- Java程序設(shè)計(jì)入門(mén)(第2版)
- Linux Networking Cookbook
- Visual Basic 開(kāi)發(fā)從入門(mén)到精通