The many uses of @ in PicoLisp
The AT-mark @ is everywhere in PicoLisp source code, and sometimes it is not obvious, at least for beginners, what the meaning of @ in the context at hand is.Here is a list that summarizes all uses of @ in PicoLisp, giving examples and explanations, as well as links to related docs with more information. It is probably necessary to read the docs first to understand the compact information in the list. This summary serves only as a quick overview, helping to find out the context and meaning of an otherwise mysterious @ mark in some PicoLisp code.
All (?) possible uses of @ with examples and explanations
- CAR of a lambda expression (Evaluation > "when the CAR is the symbol @")
(de foo @ ...)All arguments are evaluated and kept internally in a list
(- @ @@ @@@)The result of the last (3) evaluation(s) stored in the VAL of symbol
(while (read) (println @)) (and @ (min @ 5) (prinl @) (gt0 (dec @)) )Stores result of (the last) conditional expression
(case @ ("^M" NIL) ("^J" "^M") (T @))Stores result of controlling expression
(match '(@A Zeit) '(Keine))Pattern wildcard
(text "abc @1 def @2" 'XYZ 123)Replaces all occurrences of an at-mark "@", followed by one of the letters "1" through "9", and "A" through "Z", with the corresponding any argument
(load "@lib/misc.l")Home directory substitution
(be likes (John @X))Pilog variable
(be likes (John @))Anonymous Pilog variable
(native "@" "getenv" 'S "TERM")64-bit version only Calls a native C function. The first argument should specify a shared object library, e.g. "@", here a transient symbol that stands for the current main program
https://picolisp.com/wiki/?atmark
03jan19 | abu |