Login
7 branches 0 tags
Ben (X13/Arch) Added FreeBSD, OpenBSD and NetBSD to the srht CI 6e1ddf0 4 years ago 36 Commits
nujel / stdlib / string.nuj
; Some nujel string λs

[def br [λ [&num]
	"Return NUM=1 linebreaks"
	[cond [[or [nil? &num] [<= [int &num] 1]] "\n"]
	      [#t ["\n" [br [-- &num]]]]
	]
]]