0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

clispでHelloWorldプログラムを実装してみた

Posted at

概要

今日はclispでHelloWorldプログラムを実装してみました。以下のページを参考にしました。
https://soratobi96.hatenablog.com/entry/20190504/1556981919

環境構築

以下のコマンドを実行しました。

$ sudo apt install clisp

ソースコード作成

以下の通りソースコードを作成しました。

hello.lisp
(format t "Hello, World")

プログラム実行

以下の通りのコマンドでプログラムを実行しました。

$ clisp hello.lisp 
Hello, World

まとめ

今日はclispを使って遊んでみました。何かの役に立てばと。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?