Racket 6.1
Wednesday, 06 August 2014

A new version has been released of Racket, an open source language in the Lisp-Scheme family.

racketbanner

 

According to its website, Racket is a full-spectrum programming language that goes beyond Lisp and Scheme with dialects that support objects, types and laziness - it claims to be for more than just exercises in language theory and programmers keen on Lisp.

It lets you link components written in different dialects, and you can also use it to create new, project-specific dialects. Racket's libraries support applications from web servers and databases to GUIs and charts. Racket used to be called PLT Scheme, and is free to use.

The main improvement to the new release is in the way local recursive variable definitions are handled. Instead of initializing variables with an undefined value, Racket raises an exception when such a variable is used before its definition.

Writing on the Racket blog, Ryan Culpepper of PLT Design points out that since programs are rarely intended to produce #<undefined>, raising an exception provides early and improved feedback. Module-level variables have always triggered such an exception when used too early, and this change finally gives local bindings — including class fields — the same meaning.

If you have existing Racket programs that use

(define undefined (letrec ([x x]) x))

to obtain the #<undefined> value, you’ll need to change them as the new feature will break them. Racket provides the same value via the racket/undefined library that was introduced in the previous release.

Other changes to the new version give better control over the timing of flushes thanks to new plumbing functions that generalize the flush-on-exit capability of primitive output ports; stronger random testing for the contract system so that it can easily find simple mistakes in contracted data structure; and a simplification of the semantics of mis-match patterns for Redex.

The graphics libraries and dependencies (Pango, Cairo, GLib, etc.) that are bundled with Racket on Windows and Mac OS X have also been updated, as has the openssl library. It now supports forward secrecy via DHE and ECDHE cipher suites.

 racketicon

More Information

Racket website

Blog announcement of Racket 1.6

Download Racket 6.1

Related Articles

PHP Gets A Formal Specification

Ecma Approves Dart 

Go 1.3 Released

Pharo 3.0 Released 

Self 4.5 Mallard Released

 

To be informed about new articles on I Programmer, install the I Programmer Toolbar, subscribe to the RSS feed, follow us on, Twitter, Facebook, Google+ or Linkedin,  or sign up for our weekly newsletter.

 

Banner


Hour Of Code 2024 Is About To Kick Off
04/12/2024

This year the event that aims to provide a coding experience for all school students and anyone else who wants to join in runs between December 9th and 15th and includes new activities. Let's find out [ ... ]



Gifts For Geeks 2024
22/11/2024

Are you ready for Thanksgiving, when overeating remorse and a surfeit of being thankful causes the unsettling thought that there are only four weeks till the Xmas break? So here is a mix of weird [ ... ]


More News

 

espbook

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Wednesday, 06 August 2014 )