-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've started on a medium-sized project in python, and I decided to use python 3 because I'm not using any large external libraries and py3k has some nice new syntactic sugar and more importantly function annotations. However, it seems like none of WingIDE, Pydev, or pycharm actually have any support…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I am creating nested macros in BOO, I wrote this program:
macro text:
macro subMacro:
text["Text"] = "Hello World"
return [|
block:
System.Console.WriteLine( "Hello World" );
|]
But I am getting the error "Unknown Identifer: 'text'" in the 3rd line of the code.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm interested in learning about Boo's more powerful features such as syntactic macros, parser support (Ometa?), compiler pipeline, etc. My impression is that these areas have been in flux and somewhat under-documented. Are there any good resources for learning about these things other than studying…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I just saw that Ayende Rahien wrote a book about Domain Specific Languages using Boo? I have never heard of Boo before that point. Can anyone speculate as to the reason he would choose that language?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am new to Boo, and trying to figure out how to declare the type of a hash. When I do:
myHash = {}
myHash[key] = value
(later)
myHash[key].method()
the compiler complains that "method is not a member of object". I gather that it doesn't know what type the value in the hash is.
Is…
>>> More