https://github.com/cryptocode/bio Skip to content Navigation Menu Toggle navigation Sign in * Product + Actions Automate any workflow + Packages Host and manage packages + Security Find and fix vulnerabilities + Codespaces Instant dev environments + GitHub Copilot Write better code with AI + Code review Manage code changes + Issues Plan and track work + Discussions Collaborate outside of code Explore + All features + Documentation + GitHub Skills + Blog * Solutions By size + Enterprise + Teams + Startups By industry + Healthcare + Financial services + Manufacturing By use case + CI/CD & Automation + DevOps + DevSecOps * Resources Topics + AI + DevOps + Innersource + Open Source + Security + Software Development Explore + Learning Pathways + White papers, Ebooks, Webinars + Customer Stories + Partners * Open Source + GitHub Sponsors Fund open source developers + The ReadME Project GitHub community articles Repositories + Topics + Trending + Collections * Enterprise + Enterprise platform AI-powered developer platform Available add-ons + Advanced Security Enterprise-grade security features + GitHub Copilot Enterprise-grade AI features + Premium Support Enterprise-grade 24/7 support * Pricing Search or jump to... Search code, repositories, users, issues, pull requests... Search [ ] Clear Search syntax tips Provide feedback We read every piece of feedback, and take your input very seriously. [ ] [ ] Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly Name [ ] Query [ ] To see all available qualifiers, see our documentation. Cancel Create saved search Sign in Sign up You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert {{ message }} cryptocode / bio Public * Notifications You must be signed in to change notification settings * Fork 1 * Star 107 A Lisp dialect written in Zig License MIT license 107 stars 1 fork Branches Tags Activity Star Notifications You must be signed in to change notification settings * Code * Issues 1 * Pull requests 0 * Actions * Projects 0 * Security * Insights Additional navigation options * Code * Issues * Pull requests * Actions * Projects * Security * Insights cryptocode/bio This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository. main BranchesTags Go to file Code Folders and files Name Name Last commit message Last commit date Latest commit History 88 Commits deps deps examples examples src src .gitignore .gitignore LICENSE LICENSE README.md README.md build.zig build.zig std.lisp std.lisp test.lisp test.lisp View all files Repository files navigation * README * MIT license [143932794-213] Bio is an experimental Lisp dialect similar to Scheme, with an interpreter written in Zig Features include macros, garbage collection, error handling, a module facility, destructuring, and a standard library. Example: (filter (quicksort '(5 40 1 -3 2) <) (l (x) (>= x 0))) (1 2 5 40) The core of Bio is lambda expressions, from which the standard library builds syntax like type and fun: ; Create a composite type. This is sugar for `(var Point (lambda (x y) ... (self)))` (type Point (x y) (fun area () (* x y))) ; Make an instance of Point (var pt (Point 5 7)) ; Call a member function. All this is just syntax sugar based on a lambda ; returning its own environment. (print "Area:" (pt (area)) '\n) Area: 35 The documentation, like the language, is work in progress. For up-to-date examples, I recommend studying std.lisp, test.lisp and the files in the examples directory. Table of Contents * Building and running + Running tests * Language Reference + Naming conventions + Intrinsics o nil o #t and #f o #! and #value o typename o number? symbol? list? bool? callable? error? o var and define o vars o set! and unset! o arithmetic functions o equality o order o env and gc o fun, lambda and l o type o macro o macroexpand o self and environment lookups o &rest o quote o quasiquote o unquote o unquote-splicing o eval o apply o gensym o if o cond o loop o begin o try o error o print o as o list o append o range o len o string o import o assert o exit o debug-verbose o math.pi and math.e o math.floor o string.split + Standard library o car, cdr, caar, cadr, cddr, caddr, last, nth o cons o nil? o atom? o bool? o relational functions o logical functions o let macro o filter o map o quicksort o while macro o list.iterate and each o reduce-with o each-pair o matrix functions o hashmap o io.read-number o typename o time.now o double-quote o inc! and dec! o file i/o and stdin/stdout o math.odd? math.even? odd-items and even-items o math.abs o math.pow o math.average o math.sqrt o math.safe-div o math.make-random-generator and math.random-list o math.fib and math.fact o Y + Modules o Module example Building and running Clone the repository and cd to the root directory. You'll need a recent master build of Zig Last tested with Zig version 0.13.0-dev.60+d841f84b8 Build zig build Run the REPL: zig-out/bin/bio Run a Bio source file: zig-out/bin run examples/triangles.lisp You can also use import to evaluate files from the REPL, e.g. (import "examples/albums.lisp") Running tests The test suite in test.lisp can be evaluated with zig test src/ main.zig or ./bio run test.lisp Language Reference A Bio program consists of one or more s-expressions. An s-expression is recursively defined as being either 1. an atom 2. a list, which may contain lists and atoms An atom is either a 64-bit floating point number, or a symbol. A symbol is any sequence of utf8 code points that is not a valid number. Symbols serve as strings when the symbol is enclosed in double-quotes, such as "This is a symbol". Bio does not have a separate string type; the term string is simply used to denote a symbol serving as a string. Naming conventions * Predicates have a question mark suffix, such as atom? * Destructive actions have an exclamation point suffix, such as set! * Sentinels are prefixed with an ampersand, such as &rest * Symbols with special meaning are prefixed #, such as #t * Identifiers are kebab-case, while composite types such as modules are PascalCase Intrinsics Intrinsics are built-in functions, macros, and symbols implemented by the interpreter. They are building blocks for the standard library and user programs. nil A symbol representing the absence of a value. Note that nil and '() are considered equal. #t and #f Symbols representing true and false, respectively. Note that nil coerces to #f. #? A symbol representing the last top-level expression evaluation. Example: (+ 2 3) (* 2 #?) 10 #! and #value The #value symbol contains the value returned by a tried expression. This usually removes the need to use a temporary variable when you need to both check for errors and use the result. The #! symbol contains the error after a try expression. If no error occurs, this is set to nil. (try (math.safe-div (io.read-number) (io.read-number)) (print "The doubled result is: " (* 2 #value)) (print "Failed: " #!)) typename The 'typename' functions returns a string representation of the type. The most specific classification is returned, so (typename #t) is "bool", even though #t is also a symbol. (typename 'a) "symbol" (typename math.pi) "number" (typename #t) "bool" (typename '(a b c)) "list" (typename +) "function" number? symbol? list? bool? callable? error? Predicates to determine expression types. There's also an atom? predicate in the standard library. These all return #t (number? -5.7) (number? x) (symbol? 'x) (symbol? #t) (bool? #t) (bool? #f) (list? '(abc)) (callable? +) (error? (math.safe-div 4 0)) var and define 'var' creates a variable binding in the current environment. The binding will fail if it already exists in the current environment. The define function is just an alias to var Variable names can be any utf8 sequence that doesn't start with a number, " and '. Variable names are case-sensitive. (var x 5) (define y 5) (var name (io.read-line)) (var double (lambda (val) (* 2 val))) (var "Smiley") (print ) "Smiley" Local variables: (var x 2) (var y 2) (var z 2) (var some-function (lambda (x) ; Allowed, y is not in the local scope (var y 10) ; Not allowed, x is a formal in the same scope ; (var x 10) (print x y z) )) > (some-function 3) 3 10 2 vars A list can be destructured into variables using vars (var stuff '(1 2 3)) (vars a b c stuff) (assert (= a 1)) (assert (= b 2)) (assert (= c 3)) set! and unset! Changes the value of an existing binding (values themselves are immutable). The binding is searched from current to root scope. ; Define x, then update it (var x 5) (set! x 10) ; Be evil and redefine + to mean - (set! + -) (+ 10 2) 8 ; Remove binding, allowing it to be defined again (unset! x) (var x 'hey) You can optionally pass a specific environment for the binding being set as the first argument: (type Point (x y) (fun area () (* x y))) (var pt (Point 5 7)) (print "Area:" (pt (area)) '\n) Area: 35 ; Change x by passing the pt environment to set! (set! pt x 6) (print "Area:" (pt (area)) '\n) Area: 42 arithmetic functions The arithmetic functions work on floating-point numbers. Unlike infix notation, any number of arguments can be given. (+ -3 5) 2 (/ 2 (* 10 (+ math.pi 2 3 (- 2 3)))) 0.028004957675577865 ; pi symbol is same as math.pi (tip: this is available with Option+P if you're on a mac) (define circumference (l (x) (* 2 p x))) Additional math functions are available in the standard library. equality The = and ~= functions check for exact and approximate equality. The approximate case is only for numeric operands and accepts a third argument to override the tolerance (epsilon is by default 1e-7) (= x 5) (= '(1 2 3 4) nums) (= '(1 3) (odd-items nums)) (~= a b 0.0005) Exact equality is implemented in terms of the order function, allowing nested lists to be compared. order The order function returns 0, -1, 1 do indicate if the first argument is equal, less than or greater than the second argument. All expression types are supported. Lists are recursively compared. If list lengths differ, the shorter one is considered smaller. Empty lists and nil are considered equal, otherwise nil is always considered smaller. (order 100 200) -1 (order 'def 'abc) 1 (order '(1 2 3) '(0 1 2)) 1 (order '(1 2) '(0 1 2)) -1 (order 6 (* 2 3)) 0 Standard library functions such as < are implemented in terms of order. env and gc env prints the content of the current environment. > (env) Environment for global: Env@10db4b000 import = , env *Env@0 exit = , env *Env@0 gc = , env *Env@0 #f = #f, env *Env@0 #t = #t, env *Env@0 #? = #t, env *Env@0 nil = nil, env *Env@0 ... The garbage collector runs periodically, though the criteria and extent are intentionally left undefined by this language reference. fun, lambda and l Creating functions in Bio can be done either with fun or lambda. The fun function is just a convenience macro that expands to a lambda definition. > (fun square (x) (* x x)) > (square 5) 25 Below is the equivalent lambda definition: > (var square (lambda (x) (* x x))) > (square 5) 25 Direct application without binding to a variable: > ((lambda (x) (* x x)) 5) 25 The lambda symbol can be used in place of the lambda identifier (var doubler (l (x) (* 2 x))) A lambda invocation has its own environment, and the parent environment is the one that existed when the lambda was defined. In other words, Bio is lexically scoped. type A type expression is syntax sugar for functions returning their own environment. This is useful when making composite types. (type Point (x y) (fun area () (* x y)) ) (var pt (Point 5 7)) (print "Area:" (pt (area)) '\n) ; Change x by passing the pt environment to set! (set! pt x 6) (print "Area:" (pt (area)) '\n) Composite types can contain local variables and other functions, just like regular lambda expression. macro This function creates a macro. Unlike lambdas, arguments are not evaluated when the macro is invoked. Instead, they're evaluated if and when the body does so. Note that eager evaluation of macro arguments can be forced by placed &eval in front of the formal parameter. When the macro is invoked, the body is evaluated. The returned expression (which represents Bio code) is then evaluated as the final result. (var print-with-label (macro (label &rest values) `(print label ": " ,@values) )) (print-with-label Primes 2 3 5 7) Primes: 2 3 5 7 A macro invocation has its own environment, and the parent environment is the current one. This is different from lambdas whose parent environment is the one in which the lambda was defined. macroexpand You can stop the evaluation of the code returned from a macro by wrapping it in macroexpand Consider a typical swap macro: (var swap (macro (a b) `(let ((temp ,a)) (set! ,a ,b) (set! ,b temp)))) Here's a typical usage example: (let ((x 3) (y 7)) (swap x y) (print "Swapped:" x y "\n") ) Swapped: 7 3 But now we wanna see how the macro is expanded as code instead: (let ((x 5) (y 8)) (print "Macro expansion:" (macroexpand (swap x y)) "\n") ) Macro expansion: (let ((temp x)) (set! x y) (set! y temp)) Of course, you can store away the expansion for later invocation, or just evaluate the expansion directly: (let ((x 5) (y 8)) (eval (macroexpand (swap x y))) (print "Swapped:" x y "\n") ) Swapped: 8 5 self and environment lookups The self function returns the current environment as an expression. This can then be used as a function to perform lookups in that environment. This enables composite data types with their own functions, as well as modules. The distinction is purely conceptual. A top-level (self) call will return the root environment as an expression: > (self) > ((self) +) > ((self) (+ 1 2)) 3 > (((self) +) 1 2) 3 As you can see, when an environment is placed in the first position of a list, it changes which environment the following argument is looked up in. The argument can either be a symbol, or a list which will be interpreted in the context of the new environment. Use cases of self include modules, composite data types, polymorphic behavior, and enabling duck-typed interfaces/protocols. See Modules for more information and an example. &rest A sentinel symbol causing the rest of the arguments to be delivered as a single list argument. This enables variadic functions and macros. quote The quote function and the ' shorthand returns the argument unevaluated. > (quote a) a > 'a a > '(a b 1 2) (a b 1 2) quasiquote The quasiquote function and the ` shorthand returns the argument unevaluated. Unlike quote, however, it allows arguments to be selectively evaluated using unquote and unquote-splicing ; Evaluate one of the list items > (quasiquote (1 2 (unquote (+ 1 2)) 4)) (1 2 3 4) ; Same thing using shorthand notation > `(1 2 ,(+ 1 2) 4) (1 2 3 4) ; Use unquote-splicing to make a larger list of primes: > (var primes '(2 3 5 7 11 13)) > `(,@primes 17 19 23) (2 3 5 7 11 13 17 19 23) Quasi quotation is commonly used to make templates in macros, but it has uses in regular functions as well. unquote In the context of a quasiquote, evaluate the argument. The shorthand version is , unquote-splicing In the context of a quasiquote, evaluate the elements of the list and place the result in the enclosing list. The shorthand version is ,@ eval Evaluates all arguments, leaving the last evaluation as the result. If quote and quasiquote expressions are encountered, these are unquoted before evaluation. (eval '(+ 1 2)) 3 (var expr '(* 2 3)) apply Evaluates the given function with the given argument list. The last argument must be a list argument. Any preceding arguments are prepended to that list. This means that (apply + 1 '(2 3)) is equivalent to (apply + '(1 2 3)). > (apply + 5 2 1 '(10 20)) 38 > (var list-of-numbers '(1 2 3 4)) > (apply * list-of-numbers) 24 > + > (apply #? '(5 2)) 7 Using apply is mostly useful when arguments are given as a list and the function at hand expects arguments to be passed individually. gensym Generates a unique symbol. > (gensym) gensym_1 > (gensym) gensym_2 if The if expression evaluates the first argument. If true, then the second argument is evaluated, otherwise the third (optional) argument is evaluated. Each branch can have multiple expressions using constructs such as begin or let. (if (< x 10) 'Yes 'No) (var res (if (math.odd? x) 'Odd 'Even)) Here's a list of if expressions from examples/fizzbuzz-if.lisp, none of which have an else branch: (if (= 0 x) (print "Fizz")) (if (= 0 y) (print "Buzz")) (if (and (!= 0 x) (!= 0 y)) (print i)) cond The cond expression is useful when if/else conditions lead to deep nesting. It takes a variable number of predicate/body pairs, and ends with an else clause. The else clause is required and consists only of the body. It must be the last entry in the cond expression. Here's the cond expression from examples/fizzbuzz-cond.lisp: (cond ((and (= 0 x) (= 0 y)) (print "FizzBuzz" "\n")) ((= 0 x) (print "Fizz" "\n")) ((= 0 y) (print "Buzz" "\n")) ((print i "\n")) ) loop The loop function loops from n to m, or until &break is encountered The current iteration is optionally available in the given induction variable. ; loops 10 times (loop '(0 10) (print 'Hi\n)) ; loops 10 times counting down (loop '(10 0) (print 'Hi\n)) ; loops 10 times, current iteration count goes into the idx variable ; the current iteration is available in the idx variable (you can call it anything) (loop 'idx '(0 10) (print "Hi #" idx "\n")) ; loops forever until &break is encountered (loop 'idx '() (print "Hi #" idx "\n") (if (= idx 4) &break)) begin Evaluates a list of expressions and returns the last one as the result. This is useful when more than one expression needs to be evaluated, like in the branches of the if function: (if (< i 10) (begin (var x 5) (set! x (+ x 1)) (print (* x 2)) ) ) 12 try The try function evaluates the first argument. If the result is not an error expression, then the second argument is evaluated (the success branch), otherwise the third argument is evaluated (the error branch). The error branch is optional (in which case nil will be returned; add an error branch if you want to propagate the error.) It's often necessary to know the value of the tried expression if it succeeds. This can be done using an intermediary variable, or by looking up the #value symbol: (try (math.safe-div 6 2) (if (= #value 3) (print "As expected!\n") ) ) The error expression is available through the #! symbol, used here by the error branch: (try (math.safe-div 6 2) (if (= #value 3) (print "As expected!\n") ) (print "Could not divide: " #!) ) A function that may fail does not have to be used in a try function: > (var res (math.safe-div x y)) 3.5 > (math.safe-div x 0) Division by zero You can also use try after the fact: > (var res (math.safe-div x 0)) > (try (math.safe-div 1 0) #t `(string "Not good: " ,#!)) Not good: Division by zero error The error function creates a new error expression. (var fail-if-ten (lambda (x) (if (= x 10) (error "10 is not allowed") #t ) )) (try (fail-if-ten 10) "All good" (begin (print "Something went terribly wrong!\n") #! ) ) Something went terribly wrong! 10 is not allowed Notice how the try expression propagates the error by putting #! as the last expression in the error case. Errors don't have to be symbols, any expression will do. print print prints one or more expressions separated by a space. Combine print with string if you need to print verbatim (without spaces between expressions) (print "What's your name?") (var name (io.read-line)) (print "What's your age?") (var age (as number (io.read-line))) (print "Hi" name (if (> age 80) "... you're quite old" "")) IO examples work best if you put them in a file and then use (import "thename.lisp") or bio run thename.lisp See also the io. functions in the standard library. as The as function converts an expression from one type to another. If a conversion is not supported, nil is returned. The target conversion is either number, symbol, or list. (var age (as number (io.read-line))) (assert (= '(5) (as list 5))) (as symbol mynumber) (set! age (as symbol age)) list Creates a new list from its arguments. Quoting can be used to create lists without evaluating the expressions. > (var x 3) > (list 1 2 x) (1 2 3) > '(1 2 x) (1 2 x) append Creates a new list from its arguments. List arguments are spliced into the new list. > (append '(a b c) '(d e f (g h))) (a b c d e f (g h)) > (append 'a 'b 1 2 (+ 1 2)) (a b 1 2 3) range The range function is the building block for querying lists, and is used to build standard library functions such as car and cdr. * If called with no arguments, the first expression in a list is returned. * If called with one argument, a list containing the sublist from start to end-of-list is returned. * If called with two arguments, a list containing the sublist from start to end (exclusive) is returned. Negative indices are end-of-list relative. nil is returned if any indices are out of range. > (var letters '(a b c d e)) (a b c d e) > (range letters) a > (range letters -1) (e) > (range (range letters -1)) e > (range letters 2) (c d e) > (range letters 2 4) (c d) > (range letters -4 -2) (c d) len The length of a list (in item count) or symbol (in bytes) > (len '(1 2 3)) 3 string Creates a symbol by concatenating the rendering of its arguments. > (var message (string "The value is " x)) The value is 5 > (string "An error occurred : " #!) An error occurred : Division by zero import Reads and evaluates the given file. The path can be relative or absolute. (import "examples/albums.lisp") assert Checks if the expression evaluates to #t. If not, an error is printed and the process is terminated. Evaluates to #t if successful. (assert (= '(a b c 1 2 3) mylist)) exit Exits the process with an optional exit code (default is 0) (exit 1) debug-verbose Toggles the verbosity flag. When on, some details are printed during evaluation, such as nil results and quasiquote expansions. Math pi and e The values of p and Euler's number respectively. The symbol p is an alias to pi in the Math module. Math floor Returns the largest integer less than or equal to the argument. (var math (Math)) (math (floor (math pi))) 3 string.split Given one or more delimiters, tokenizes the input symbol and produces a list of symbols. (assert (= (string.split "" ",") '())) (assert (= (string.split "a" ",") '(a))) (assert (= (string.split "a,b,c" ",") '(a b c))) (assert (= (string.split "a,b,c," ",") '(a b c))) (assert (= (string.split "a,b;c," ",;") '(a b c))) (assert (= (string.split " " ",") (list " "))) Standard library The standard library is a file called std.lisp that's loaded and evaluated when the interpreter starts. car, cdr, caar, cadr, cddr, caddr, last, nth These functions treat a list as pairs in the classical Lisp sense. car returns the first list item, while cdr returns the rest of the list. last returns the last list item. (var nums '(1 2 3 4)) (assert (= 1 (car nums))) (assert (= 2 (cadr nums))) (assert (= 3 (caddr nums))) (assert (= 4 (last nums))) (assert (= 3 (nth 2 nums))) (assert (nil? (nth 100 nums))) cons Prepends an item to a list: > (cons 'a '(b c)) (a b c) nil? True if the argument is nil or an empty list. atom? True if the argument is a number or a symbol (in other words, not a list) bool? True if the argument is #t or #f relational functions The relation functions are <=, <, >, >=, != in addition to the intrinsic = logical functions The and and or macros perform the usual shortcut evaluation. The not function checks if the argument is false. If so, the result is then # t, otherwise it's #f let macro Local bindings can be created with a lambda expression. If the only reason to create a lambda is to have local variables, then the let macro is more convenient. (var x 10) (var y 20) (let ((x 5) (y 6)) (+ x y) ) 11 filter Filters a list. > (filter (lambda (x) (< x 5)) '(3 9 5 8 2 4 7)) (3 2 4) map Applies a function over one or more lists. ; Create a list of sums taking operands from three lists > (map + '(0 2 5) '(1 2 3) '(1 2 3)) (2 6 11) ; Double every element in a list > (map (l (x) (* 2 x)) '(1 2 3)) (2 4 6) ; A list of pairs with the order reversed > (map (l (x y) (list y x)) '(a b c) '(1 2 3)) ((1 a) (2 b) (3 c)) quicksort Sorts a list using the supplied comparator function. The following example sorts the same list in ascending and descending order by passing < and > as the comparator functions. In the ascending example, we also filter out negative numbers: > (filter (quicksort '(5 40 1 -3 2) <) (l (x) (>= x 0))) (1 2 5 40) > (quicksort '(5 40 1 -3 2) >) (40 5 2 1 -3) You can also pass a lambda to do your own ordering. See the albums example file for an example of doing this to sort albums. while macro Expands to a tail-recursive function running a body while the predicate holds: (while (< c 10000000) (print "Value is now " c "\n") (inc! c) ) list.iterate and each The list.iterate function allows for convenient iteration of lists. The first argument is a list. The second argument is a function that's called for every item in the list, with the item as an argument. each is an alias to this function. ; Print all numbers (each lots-of-numbers print) ; Create a new list of numbers, with double the values (var result '()) (each nums (lambda (item) (set! result (append result (* 2 item))) )) (2 4 6 8 10 12) reduce-with Signature: (reduce-with initial fn op list) Calls op on every item in list, but only after applying the function fn to the item. (reduce-with 0 (lambda (x) (+ x 1)) + '(1 2 3)) 9 This works like this: * start with the list '(1 2 3) * apply the lambda which adds 1 to each element, leaving '(2 3 4) * reduce to a single number 9 using + with the initial number 0 each-pair Calls a supplied lambda with each consecutive pair in a list. ; Pair iteration where each pair 1 5, 3 3 and 4 2 all sum to 6 (each-pair '(1 5 3 3 4 2) (l (a b) (assert (= 6 (+ a b))))) matrix functions ; Multidimensional list (matrix) access (var M '(((10 11 12) (13 14 15)) ((16 17 18) (19 20 21)))) (assert (= 20 (matrix-at M 1 1 1))) (assert (= nil (matrix-at M 1 1 100))) (assert (= '(10 11 12) (matrix-at M 0 0))) (var M2 '( (1 2 3 4) (a b c d))) (assert (= 'c (matrix-at M2 1 2))) ; Update matrix; the old value is returned (assert (= 'c (matrix-set! M2 'x 1 2))) (assert (= 'x (matrix-at M2 1 2))) ; Trying to set a value outside the matrix returns an error (assert (error? (try (matrix-set! M2 0 200 2) #t #!))) hashmap The are numerous hashmap related functions available: (var mymap (hashmap.new ("1" 2) (3 4))) (assert (hashmap? mymap)) (assert (= (len mymap) 2)) (hashmap.put mymap 5 6) (hashmap.put mymap 7 "Initial entry") (var initial-entry (hashmap.put mymap 7 "Another entry")) (assert (= initial-entry "Initial entry")) (assert (= (len mymap) 4)) (assert (= (hashmap.get mymap 7) "Another entry")) (hashmap.remove mymap 7) (assert (= (hashmap.get mymap 7) nil)) (assert (= (len mymap) 3)) (var keys '()) (var vals '()) (hashmap.iterate mymap (l (k v) (item-append! keys k) (item-append! vals v) )) (assert (= '(1 3 5) keys)) (assert (= '(2 4 6) vals)) (var count-removed (hashmap.clear mymap)) (assert (= count-removed 3)) (assert (= (len mymap) 0)) ; k -> '() (var hmlist (hashmap.new)) (hashmap.append! hmlist 'a 1) (hashmap.append! hmlist 'a 2) (assert (= (hashmap.get hmlist 'a) '(1 2))) ; The 'a entry exists, so the lambda is called, which updates the list (hashmap.put-or-apply hmlist 'a 3 (l (list) (assert (= list '(1 2))) (item-append! list 3) )) (assert (= (hashmap.get hmlist 'a) '(1 2 3))) (assert (= (hashmap.maybe-put hmlist 'a '(5 5 5)) '(1 2 3))) (assert (= (hashmap.maybe-put hmlist 'b '(5 5 5)) '(5 5 5))) (assert (contains? hmlist 'a)) (assert (not (contains? hmlist 'not-there))) io.read-number Read a number from stdin. If input is not a number, an error expression is returned. typename Returns the type name of its argument >(define x 5) >(typename x) number >(typename 'x) symbol time.now Returns the current time in milliseconds since unix epoch: >(time.now) 1618413357184 double-quote Renders the argument and wraps the result in double-quotes. > (double-quote name) "Joanna" > (double-quote 5) "5" > (double-quote (+ 2 3)) "5" inc! and dec! Increments and decrements file i/o and stdin/stdout A file is opened with io.open-file, which takes a relative or absolute path name as an argument. The file is then closed with io.close-file. Currently, line oriented reading and writing is supported. (var report (io.open-file "report.csv")) (io.read-line report) (io.write-line report "a new line is appended") (io.close-file report) io.read-line returns the error expression "EOF" if end of the file is reached. io.read-line and io.write-line without a file argument reads and writes to stdin and stdout respectively. io.read-byte reads one byte at a time from a file. math.odd? math.even? odd-items and even-items math.odd? and math.even? determine if a number is odd or even, respectively. odd-items and even-items create a list with odd- and even indexed items respectively. These functions are 1 based. >(math.odd? 5) #t > (odd-items '(a b c d e f g)) (a c e g) math.abs Returns the absolute value of the argument. (math.abs -17) 17 math.pow Calculates x^y: >(math.pow 2 32) 4294967296 math.average The average of a list of numbers math.sqrt Calculate the square root using Newton's method >(math.sqrt 986) 31.40063693621559 math.safe-div Divides the first argument by the second. If the divisor is zero, the result is an error. (try (safe-div 6 2) (if (= #value 3) (print "As expected!\n") ) ) math.make-random-generator and math.random-list Given a seed, math.make-random-generator creates a linear congruent random number generator. Example using current Unix epoch as seed: >(var rng (math.make-random-generator 0)) >(rng) 362807296 >(rng) 1965043776 Given a random number generator, math.random-list generates a list of n random numbers: >(var rng (math.make-random-generator 0)) >(math.random-list rng 10) (1055406848 752570112 91411200 3016512 1968096889 765038592 339902464 1666232384 1888402176 197119744) math.fib and math.fact Recursive Fibonacci and factorial functions (note: as Bio doesn't support arbitrary precision numbers yet, it can only handle relatively small inputs) Y The Y fixpoint combinator (technically, the Z combinator as Bio is applicative) > (var ! (Y (lambda (r) (lambda (x) (if (< x 2) 1 (* x (r (- x 1)))))))) > (! 5) 120 Modules A Bio module is a module by convention, somewhat similar to classical Javascript modules: 1. A mod-.lisp file with the contents wrapped in a lambda call 2. The last expression is (self), making the environment available to the importer 3. The following definitions are available: + module-name, a string describing the module + module-version, a list of numbers signifying major, major, and patch + module-description, an optional description of the module Modules A Bio module is a module by convention, somewhat similar to classical Javascript modules: 1. A mod-.lisp file with the contents wrapped in a lambda call 2. The last expression is (self), making the environment available to the importer 3. The following definitions are available: + module-name, a string describing the module + module-version, a list of numbers signifying major, major, and patch + module-description, an optional description of the module Module example The examples directory contains a sample module called mod-pos.lisp To use the module in a REPL: bio> (var Point (import "examples/mod-pos.lisp")) bio> (var pt (Point (new-point 2 5.4))) bio> (pt x) 2 bio> (pt y) 5.4 bio> (pt (as-string)) 2 5.4 bio> (var loc (Point (new-location 100.5 200.5))) bio> (loc x) 100.5 bio> (loc y) 200.5 bio> (loc (as-string)) 100.5deg N 200.5deg E About A Lisp dialect written in Zig Topics scheme lisp zig Resources Readme License MIT license Activity Stars 107 stars Watchers 4 watching Forks 1 fork Report repository Releases 3 tags Packages 0 Contributors 3 * @cryptocode cryptocode * @nektro nektro Meghan Denny * @hqnna hqnna Hanna Languages * Zig 79.3% * NewLisp 20.7% Footer (c) 2024 GitHub, Inc. Footer navigation * Terms * Privacy * Security * Status * Docs * Contact * Manage cookies * Do not share my personal information You can't perform that action at this time.