index.html 2.6 KB

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