mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
Clemens Ladisch <clemens@ladisch.de>
fix some wrong section/file/reference names
This commit is contained in:
parent
1097c437a1
commit
6633460801
5 changed files with 14 additions and 5 deletions
|
|
@ -1,3 +1,12 @@
|
|||
(princ "Hello ALSA world\n")
|
||||
(princ "One " 1 "\n")
|
||||
(princ "Two " (+ 1 1) "\n")
|
||||
|
||||
(defun myprinc (o) (princ o))
|
||||
(myprinc "Printed via myprinc function!\n")
|
||||
|
||||
(defun printnum (from to) (while (<= from to) (princ " " from) (setq from (+ from 1))))
|
||||
(princ "Numbers 1-10: ") (printnum 1 10) (princ "\n")
|
||||
|
||||
(defun factorial (n) (when (> n 0) (* n (factorial (- n 1)))))
|
||||
(princ "Factorial of 10: " (factorial 10) "\n")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue