This website requires JavaScript.
Explore
Help
Sign In
guanjihuan
/
GitHub_collection_hello-world
Watch
1
Star
0
Fork
0
You've already forked GitHub_collection_hello-world
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
GitHub_collection_hello-world
/
c
/
common-lisp.lisp
7 lines
83 B
Common Lisp
Raw
Normal View
History
Unescape
Escape
Add Common Lisp example Common Lisp is distinct from plain old `Lisp' in that Lisp doesn't have FORMAT. That was added in Common Lisp, in Guy Steele's book Common Lisp the Language, in 1984.
2016-05-20 07:03:19 -07:00
;; Common Lisp
(
defun
hello-world
(
)
(
format
t
"Hello World~%"
)
)
Update Common-Lisp (#608) * Added a function call and ~& to start a new line before printing "Hello World" * Don't print initial newline Co-authored-by: Richie Bendall <richiebendall@gmail.com>
2020-03-29 12:41:17 -04:00
(
hello-world
)
Reference in New Issue
Copy Permalink