Computer Science Canada REBOL 2.7.6 released! |
Author: | btiffin [ Fri Mar 14, 2008 10:38 pm ] | ||||
Post subject: | REBOL 2.7.6 released! | ||||
Hello code fans, REBOL 2.7.6 was released today. Some very nice enhancements and link library access is now part of the freely redistributable versions of REBOL/Core and REBOL/View. Read the official announcement here http://www.rebol.net/upnews/0026.html and then follow the link to the builds, which is here http://www.rebol.net/builds/ The zip for windows comes with all the Internet scheme protocol source code, the Viewtop sources including the editor, professional binaries (these have features that require a key, but don't worry ... they are addons, not required for day to day use, especially when load/library is now freed and you get both REBOL/Core for running servers and REBOL/View for everyday development and GUI). If you haven't experienced REBOL yet, and perhaps don't want to dive right into a full SDK package, there is always the 1.3.2 installer bundles starting at http://rebol.com/download.html REBOL runs on Windows, Linux, Mac and quite a few others. Built in Internet protocols include http, pop, apop ftp, nntp, smtp, esmtp, raw tcp, udp and then user written news, telnet, and even the one I rewrote, dict. (find dict at http://rebol.org/library/scripts/dict-scheme.r) This inherent networking means it as easy to print read file as it is to print read http://compsci.ca. Want to read your email?
Do yourself a favour and try it out. A full fledged GUI calculator (again Linux, Mac, Windows) as simply as
http://rebol.com http://rebol.org http://rebol.net Cheers and Happy pi Day Brian |
Author: | Mackie [ Sat Mar 15, 2008 12:34 pm ] |
Post subject: | RE:REBOL 2.7.6 released! |
I've got to say, that email reader looks cool. |
Author: | btiffin [ Sun Mar 16, 2008 2:33 am ] | ||||||||
Post subject: | Re: REBOL 2.7.6 released! | ||||||||
There is quite a bit to REBOL that oozes cool. But like chess, the rules are somewhat easy; being a master takes time, effort and a little bent genius. Scan a web page and print out the hyperlinks ... (where >> is the default console prompt)
Draw a red box that displays hello and then changes to a random colour on each click
REBOL's RANDOM handles any of its datatypes, and white being 255.255.255 means generate a colour tuple from 0 to 255 for R G and B. Oh, include alpha channel too for transparency 255.255.255.255 but that wouldn't add much to this example. A little bit of set theory
A red filled blue circle inside a silver button (along with the "REBOL" text label) and an action block that sets the button's text to show the current time and then quits after waiting 5 seconds.
Just too many features ... and REBOL/View 2.7.6 with installer (released this aft) is still only a 500Kb download. And these samples are just toys; full fledged computer science comes built in, covering just about everything. (System level programming is not really REBOL's forte - it is an interpreter - but that is one of very few areas where REBOL doesn't shine) Sorry for rambling ladies and gentlemen. Just evangelizin'. Cheers, Brian |