1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 03:50:32 +02:00
This commit is contained in:
Chenbo Li
2013-07-29 12:33:13 +08:00
parent 07d909018f
commit bbde710a40

View File

@@ -171,7 +171,7 @@ filename: learn-emacs-lisp.el
;; Let's format a string:
(format "Hello %s!\n" "visitor")
;; %s is a place-holder for a string, replaced by "Alice".
;; %s is a place-holder for a string, replaced by "visitor".
;; \n is the newline character.
;; Let's refine our function by using format: