书栈网 · BookStack 本次搜索耗时 0.011 秒,为您找到 360 个相关结果.
  • aliases

    629 2020-06-21 《Practicalli Clojure》
    Defining aliases to do more with Clojure tools Hint::practicalli/clojure-deps-edn adds common aliases and tools Using an alias Hint::Only one main namespace An alias for a comm...
  • Spec data

    511 2020-06-21 《Practicalli Clojure》
    Clojure Spec for data Workflow for data specifications Explain Clojure Spec for data Specifications can be defined for any data in Clojure, be that simple values or complex d...
  • Strings

    542 2020-06-21 《Practicalli Clojure》
    Strings Strings the Clojure way Using Interpose with Strings Using Regex Java Interop for Strings Strings Strings in Clojure are actually Java Strings. Hint Why do ...
  • Basic REPL

    462 2020-06-21 《Practicalli Clojure》
    Basic Command Line REPL UI Hint::rebel readline feature rich repl Basic Command Line REPL UI The clojure command will start a REPL by default or if given the --repl argument...
  • Reading Files

    327 2020-06-21 《Practicalli Clojure》
    Some Basic Clojure Some Basic Clojure In this section we will evaluate some code so you can get familiar with the syntax and basic constructs of Clojure. It will also help e...
  • Whats my environment

    317 2020-06-21 《Practicalli Clojure》
    Whats my environment Viewing the Class path Namespace Last 3 values in the REPL Whats my environment Clojure has symbols (names that point to values). Some of these symb...
  • 介绍

    ClojureScript 入门指南 Contribute ClojureScript 入门指南 网页版 http://cljs-book.clj.im Clojure(读作 “Closure”)是 Rich Hickey 发明的一门 Lisp 方言, 它是一门通用编程语言但是着重于函数式编程. Clojure 本身编译到 JVM By...
  • 入门教程

    1348 2019-05-04 《Clojure学习笔记》
    Clojure入门教程 Clojure入门教程 原文 : Clojure - Functional Programming for the JVM , 作者 R.Mark Volkmann
  • Coding in the REPL

    451 2020-06-21 《Practicalli Clojure》
    Coding in the REPL Hint::Use an Editor for Clojure Development Evaluating code Including code from a file Hint::Workflow regardless of tooling Clojure projects Coding in t...
  • 基础数据结构

    932 2019-05-04 《Clojure学习笔记》
    Clojure基础数据结构 Number String Map Keyword Vector List Set Clojure基础数据结构 Clojure 有如下几种基本的数据类型,它们都是immutable 的,也就是说,我们不可能更改它们,任何对原有数据结构的修改都会生成一份新的copy。 Number Clojure 的nu...