1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset='utf-8' />
- <meta http-equiv="X-UA-Compatible" content="chrome=1" />
- <meta name="description" content="Ursala : concise functional programming language" />
- <link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
- <title>Ursala</title>
- </head>
- <body>
- <!-- HEADER -->
- <div id="header_wrap" class="outer">
- <header class="inner">
- <a id="forkme_banner" href="https://github.com/gueststar/Ursala">View on GitHub</a>
- <h1 id="project_title">Ursala</h1>
- <h2 id="project_tagline">concise functional programming language</h2>
- <section id="downloads">
- <a class="zip_download_link" href="https://github.com/gueststar/Ursala/zipball/master">Download this project as a .zip file</a>
- <a class="tar_download_link" href="https://github.com/gueststar/Ursala/tarball/master">Download this project as a tar.gz file</a>
- </section>
- </header>
- </div>
- <!-- MAIN CONTENT -->
- <div id="main_content_wrap" class="outer">
- <section id="main_content" class="inner">
- <p>This project is essentially an investigation of some off-beat ideas
- about functional programming through the design and implementation of
- a novel language called Ursala (a pseudo-acronym for universal
- applicative language). Its main preoccupations are brevity and
- flexibility for rapid prototyping, with a bias toward applications
- involving text processing/compilation, trees, graphs, and number
- crunching (via built-in API's for some good numerical libraries such
- as lapack, gsl, mpfr, and others). It's probably best suited to
- individual projects because it enforces no particular coding standards
- or practices and makes unreadable code easier to write than most
- non-esoteric languages.</p>
- <p>Ursala is mainly an individual effort that has been around for some
- years but neglected lately due to my day job. I'm now looking to
- revive it and address some issues, such as improving the web presence
- and on-line documentation. Watch this space for updates. Comments and
- feedback are welcome on the mailing list, <a href="mailto:[email protected]">[email protected]</a>.</p>
- </section>
- </div>
- <!-- FOOTER -->
- <div id="footer_wrap" class="outer">
- <footer class="inner">
- <p class="copyright">Ursala maintained by <a href="https://github.com/gueststar">gueststar</a></p>
- <p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
- </footer>
- </div>
-
- </body>
- </html>
|