top | item 44683729

(no title)

dimitar | 7 months ago

Can you give an example? I can't speak for all possible lisps but Common Lisp and clojure have great string built-ins:

https://lispcookbook.github.io/cl-cookbook/strings.html

https://clojuredocs.org/clojure.string

discuss

order

z_open|7 months ago

printf("x = %6d\ny = %.8E\n", x, y) ;

What's the equivalent lisp?

mrcode007|7 months ago

(format t "x = ~6d~%y = ~.8E~%" x y)

rscho|7 months ago

You seriously thought that lisps had no printf equivalent ?!

zck|7 months ago

Someone else has given you the Common Lisp version. Here's one for Clojure:

  (printf "x = %6d\ny = %.8E\n" x y)
If I've understood everything right, and your example is in C, the format string in Clojure is identical to the one in your comment.