Category:Raven

From Rosetta Code

Jump to: navigation, search

Programming Language
Raven is a programming language. It may be used to instruct computers to accomplish a variety of tasks which may or may not be domain-specific.

Listed below are all of the tasks on Rosetta Code which have been solved using Raven.

See also: Raven on the HOPL


Raven is an eclectic language with features derived from Python, Forth, and Perl. It was developed independently by Sean Pringle. Raven is available from mythago.net under the GNU General Public License. It is currently only available for the Linux platform.

Contents

[edit] Features

Its described feature set includes:

[edit] From Python

  • Whitespace indentation to define code blocks.
  • Some common function names.

[edit] From Forth

  • Postfix Notation and the Data Stack.
  • Dictionary of short atomic functions.

[edit] From Perl

[edit] Other design goals

  • Use clear and concise syntax.
  • Be fast to write and fast to run.
  • Use closures as a simple object model.
  • Have minimal restrictions on variable and function names.
  • Rely on best practices guidelines rather than imposing rules for everything.
  • Interface to MySQL and SQLite.
  • Support multithreading.

Source: The Raven home page

[edit] Other Resources

Personal tools