![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Expert Programmer
|
Anyone ever heard of this language
I have #Develop 2.0 and it gives me the option to program in a language called "Boo" anyone heard of it?
__________________
|
|
|
|
|
|
#2 |
|
Programming Guru
![]() Join Date: Aug 2005
Location: England
Posts: 1,499
Rep Power: 5
![]() |
Yep. It's a .NET language with a language similar to Python. Some interesting features of note:
1. Comprehensions and generators, i.e. children = [person for person in person if person.Age < 18] 2. Anonymous blocks (i.e. anonymous delegates or lambda expressions): list = map({ x | x + 1 }, [1, 2, 3, 4]) # -> [2, 3, 4, 5]3. Type inference: list = (1, 2, 3, 4) # list is automatically defined as int[] 4. User-defined macros that can alter the ASTs of their enclosed blocks: addfootoallstrings:
print "hello" # prints "foohello" |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| The C programming Language (2nd Edition) | nnxion | Book Reviews | 10 | Jul 6th, 2007 3:29 PM |
| Language creation/extending | gryfang | Project Ideas | 43 | Jul 20th, 2006 1:42 PM |
| Language display in program | Prm753 | C++ | 3 | May 30th, 2006 5:45 PM |
| More languages? | UnKnown X | Coder's Corner Lounge | 27 | Dec 18th, 2005 3:06 PM |