Clojure学习:运行在 Java 虚拟机(JVM)上的动态Lisp编程语言

embedded/2024/11/12 4:23:26/

因为HY的学习资料较少,所以通过学习Clojure来辅助学习HY。前期也看过一些Common Lisp和On Lisp的文档,现在还不太清楚HY跟谁最接近。

文档:Clojure - Getting Started

在FreeBSD下安装Clojure

在FreeBSD系统,可以直接使用pkg进行安装,先用pkg search查看安装包的名字:

# pkg search cloj
pkg: No SRV record found for the repo 'FreeBSD'
clojure-1.11.1.1200_1          Dynamic programming language for the JVM
clojure-cider-1.15.0_1         Clojure IDE and REPL for Emacs
clojure-cider-emacs_canna-1.15.0_1 Clojure IDE and REPL for Emacs
clojure-cider-emacs_devel-1.15.0_1 Clojure IDE and REPL for Emacs
clojure-cider-emacs_devel_nox-1.15.0_1 Clojure IDE and REPL for Emacs
clojure-cider-emacs_nox-1.15.0_1 Clojure IDE and REPL for Emacs
clojure-cider-emacs_wayland-1.15.0_1 Clojure IDE and REPL for Emacs
clojure-mode.el-5.11.0_14,1    Emacs lisp module for the Clojure language
clojure-mode.el-emacs_canna-5.11.0_14,1 Emacs lisp module for the Clojure language
clojure-mode.el-emacs_devel-5.11.0_14,1 Emacs lisp module for the Clojure language
clojure-mode.el-emacs_devel_nox-5.11.0_14,1 Emacs lisp module for the Clojure language
clojure-mode.el-emacs_nox-5.11.0_14,1 Emacs lisp module for the Clojure language
clojure-mode.el-emacs_wayland-5.11.0_14,1 Emacs lisp module for the Clojure language
swank-clojure-1.2.1            Swank/SLIME support for Clojure

发现有Clojure,用pkg install 进行安装

# pkg install clojure
Updating FreeBSD repository catalogue...
pkg: No SRV record found for the repo 'FreeBSD'
Fetching meta.conf:   0%
FreeBSD repository is up to date.
All repositories are up to date.
The following 3 package(s) will be affected (of 0 checked):New packages to be INSTALLED:clojure: 1.11.1.1200_1rlwrap: 0.45.2_1Installed packages to be REINSTALLED:liblz4-1.9.4_1,1Number of packages to be installed: 2
Number of packages to be reinstalled: 1The process will require 20 MiB more space.
17 MiB to be downloaded.Proceed with this action? [y/N]: y
[1/2] Fetching rlwrap-0.45.2_1.pkg: 100%  114 KiB 116.9kB/s    00:01    
[2/2] Fetching clojure-1.11.1.1200_1.pkg: 100%   17 MiB   1.8MB/s    00:10    
Checking integrity... done (0 conflicting)
[1/3] Installing rlwrap-0.45.2_1...
[1/3] Extracting rlwrap-0.45.2_1: 100%
[2/3] Reinstalling liblz4-1.9.4_1,1...
[2/3] Extracting liblz4-1.9.4_1,1: 100%
[3/3] Installing clojure-1.11.1.1200_1...
[3/3] Extracting clojure-1.11.1.1200_1: 100%

 安装好后,使用clj命令进入clojure交互界面:

$ clj
Downloading: org/clojure/clojure/1.11.1/clojure-1.11.1.pom from central
Downloading: org/clojure/core.specs.alpha/0.2.62/core.specs.alpha-0.2.62.pom from central
Downloading: org/clojure/spec.alpha/0.3.218/spec.alpha-0.3.218.pom from central
Downloading: org/clojure/pom.contrib/1.1.0/pom.contrib-1.1.0.pom from central
Downloading: org/clojure/core.specs.alpha/0.2.62/core.specs.alpha-0.2.62.jar from central
Downloading: org/clojure/spec.alpha/0.3.218/spec.alpha-0.3.218.jar from central
Downloading: org/clojure/clojure/1.11.1/clojure-1.11.1.jar from central
Clojure 1.11.1
user=> 

学习Clojure

写一个hello world demo

Clojure">
user=> (defn hello-world [username](println (format "Hello, %s" username)))(hello-world "world")
#'user/hello-world
user=> user=> Hello, world
nil

 Clojure的特点:

跟其它语言相比比较有特点的是分数,比如可以直接这样写:22/7 ,这个分数可以直接使用。

字符串可以前面加#来构成正则表达式

#"[0-9]+"

四种数据

Clojure">'(1 2 3)     ; list
[1 2 3]      ; vector
#{1 2 3}     ; set
{:a 1, :b 2} ; map

Clojure Evaluation

 

Structure vs Semantics

 

交互模式

交互模式下×1 ×2 ×3 分别代表最近的三次返回值

  • *1 (the last result)

  • *2 (the result two expressions ago)

  • *3 (the result three expressions ago)

 

Clojure - Install Clojure

 


http://www.ppmy.cn/embedded/58246.html

相关文章

(七)[重制]C++命名空间与标准模板库(STL)

​ 引言 在专栏C教程的第六篇C中的结构体与联合体中,介绍了C中的结构体和联合体,包括它们的定义、初始化、内存布局和对齐,以及作为函数参数和返回值的应用。在专栏C教程的第七篇中,我们将深入了解C中的命名空间(nam…

第三章 设计模式(2023版本IDEA)

学习目标 3.1 设计模式概述3.2 软件可复用问题和面向对象设计原则一、软件可复用问题二、面向对象设计原则1. 单一责任原则(Single Responsibility Principle, SRP)2. 开放-封闭原则(Open-Closed Principle, OCP)3. 里氏替换原则&…

Prompt Engineering overview

文章目录 High level look迭代法优化iterate参考 High level look 提示的重要性往往会被低估或者高估 低估是因为正确的提示技术如果使用得当,可以让我们走的更远。 高估是因为基于提示的应用程序,需要围绕提示进行大量的工程设计才能运行良好。 提示工…

新浪API系列:支付API打造无缝支付体验,畅享便利生活(3)

在当今数字化时代,支付功能已经成为各类应用和平台的必备要素之一。作为开发者,要构建出安全、便捷的支付解决方案,新浪支付API是你不可或缺的利器。新浪支付API提供了全面而强大的接口和功能,帮助开发者轻松实现在线支付的集成和…

后门攻击检测指南--windowsLinuxweb

免责声明:本文仅做技术交流与学习... 目录 Win d o w s - 后 门 - 常 规 & 权 限 维 持& 内 存 马 Lin u x - 后 门 - 常 规 & 权 限 维 持 & R o o t kit& 内 存 马 关于Rootkit的检测: web层面-后门--内存马 Win d o w s - 后 门 - 常 规…

VBA实现Excel的数据透视表

前言 本节会介绍通过VBA的PivotCaches.Create方法实现Excel创建新的数据透视表、修改原有的数据透视表的数据源以及刷新数据透视表内容。 本节测试内容以下表信息为例 1、创建数据透视表 语法:PivotCaches.Create(SourceType, [SourceData], [Version]) 说明&am…

发表EI会议论文-对考研生和研究生都有好处!

EI论文对考研和保研的帮助主要体现在以下几个方面: 对考研的帮助 1.复试加分:在考研过程中,复试阶段是关键,拥有EI论文可以证明考生具备一定的科研能力,给考官留下深刻印象,有助于提高复试通过率。 2.学…

谷粒商城----通过缓存和分布式锁获取数据。

高并发下缓存失效的问题 高并发下缓存失效的问题--缓存穿透 指查询一个一定不存在的数据,由于缓存是不命中,将去查询数据库,但是数据库也无此记录,我们没有将这次查询的不写入缓存,这将导致这个不存在的数据每次请求…