RosettaCodeData/Task/HTTP/Emacs-Lisp/http-1.el

6 lines
232 B
EmacsLisp
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
(let ((buffer (url-retrieve-synchronously "http://www.rosettacode.org")))
(unwind-protect
(with-current-buffer buffer
(message "%s" (buffer-substring url-http-end-of-headers (point-max))))
(kill-buffer buffer)))