Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0branch/boron
Boron is a scripting language similar to Rebol. The interpreter is a C library which may be copied under the terms of the LGPLv3. (Mirror of: git://git.code.sf.net/p/urlan/boron/code.)
https://github.com/0branch/boron
rebol
Last synced: about 2 months ago
JSON representation
Boron is a scripting language similar to Rebol. The interpreter is a C library which may be copied under the terms of the LGPLv3. (Mirror of: git://git.code.sf.net/p/urlan/boron/code.)
- Host: GitHub
- URL: https://github.com/0branch/boron
- Owner: 0branch
- License: lgpl-3.0
- Created: 2013-07-22T07:33:03.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-08-26T16:56:32.000Z (over 2 years ago)
- Last Synced: 2024-08-03T18:15:33.831Z (5 months ago)
- Topics: rebol
- Language: C
- Homepage: http://urlan.sourceforge.net/boron/
- Size: 1.87 MB
- Stars: 20
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: LICENSE
Awesome Lists containing this project
- AwesomeInterpreter - boron
README
About Boron
===========Boron is an interpreted, prototype-based, scripting language similar to Rebol.
The interpreter and datatype system is a C library useful for building
domain-specific languages (DSLs) embedded in C/C++ applications.It is a smaller language than Rebol with fewer built-in data types, no infix
operators, and no built-in internet protocols. It does add the capability to
slice series values and store data in a serialized binary format.The library may be copied under the terms of the LGPLv3, which is included in
the LICENSE file.How to compile
==============These commands can be used to build the shared library and interpreter program
on UNIX systems:./configure
makeTo see the configure options run:
./configure -h
Use the make `install` & `install-dev` targets to copy files into the local
system directories. If the DESTDIR is not provided then the files will be
placed under `/usr/local`.sudo make install DESTDIR=/usr
sudo make install-dev DESTDIR=/usrBoron links
===========Home Page
http://urlan.sourceforge.net/boron/Git Repository
https://git.code.sf.net/p/urlan/boron/codeAuthor Email
[email protected]