Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
16
Task/Documentation/Ol/documentation.ol
Normal file
16
Task/Documentation/Ol/documentation.ol
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
; note: use this script to generate a markdown file
|
||||
; sed -n 's/\s*;!\s*//gp'
|
||||
|
||||
(import (owl parse))
|
||||
|
||||
;! # Documentation
|
||||
|
||||
;! ## Functions
|
||||
|
||||
;! ### whitespace
|
||||
;! Returns a #true if argument is a space, newline, return or tab character.
|
||||
(define whitespace (byte-if (lambda (x) (has? '(#\tab #\newline #\space #\return) x))))
|
||||
|
||||
;! ### maybe-whitespaces
|
||||
;! Returns any amount (including 0) of whitespaces. Used as whitespace characters skipper in parses.
|
||||
(define maybe-whitespaces (greedy* whitespace))
|
||||
Loading…
Add table
Add a link
Reference in a new issue