Fix prnl in lib.pbl
This commit is contained in:
parent
806f63e8ae
commit
71623db37c
|
@ -1,8 +1,7 @@
|
||||||
#!/usr/bin/pl
|
#!/usr/bin/pl
|
||||||
; Print with newline
|
; Print with newline
|
||||||
(def prnl (fn (_txt) (
|
(def prnl (fn (_txt) (
|
||||||
(prn _txt)
|
(prn (cat _txt (ch 10)))
|
||||||
(pch 10)
|
|
||||||
)))
|
)))
|
||||||
|
|
||||||
; Exponentiate a^b
|
; Exponentiate a^b
|
||||||
|
|
Loading…
Reference in New Issue