Bigloo is a Scheme implementation devoted to one goal: enabling Scheme based programming style where C(++) is usually required. It was developed in France at INRIA.
4
votes
4answers
171 views
How to circumvent the “Method too large” error in Java Compilation?
I have a parser written in bigloo scheme functional language which I need to compile into a java class. The whole of the parser is written as a single function. Unfortunately this is causing the JVM ...
2
votes
1answer
131 views
How to avoid a shift reduce conflict in a LALR grammar for parsing nested lists?
I would like to create a LALR grammar to parse nested lists, but I get always a shift/reduce conflict.
I have the list1 which is a list of type1 items and list2:
<list1> ::= <type1> | ...
2
votes
1answer
178 views
Correct threads usage in Scheme (Bigloo)
I'm trying to write an application server in Scheme with Bigloo implementation. The code:
(module server
(library fthread)
(main main))
(define *port-num* 8080)
(define (main argv)
...
2
votes
1answer
247 views
How to enable native threads support in Bigloo Scheme in OS X?
I am trying to compile Bigloo Scheme from source and I cannot figure out how to enable native thread support via ./configure in OS X 10.5 (Leopard) (and I haven't read anywhere that threading is not ...
1
vote
2answers
48 views
transform M dimensional list in one dimension
I'm new in scheme programming and I'm learning basic algorithms, like how to define map, append and so on.
But there is an algorithm for which I can't find an implementation. I speak about ...
0
votes
2answers
107 views
Scheme: Proper application of the eval function?
at work I encountered a basic problem when trying to implement a configuration script with Scheme. To avoid the need of inventing an artificial and restricted language the script should contain actual ...
0
votes
1answer
78 views
Compiler Bigloo Issue
The thing i want to ask, is what the difference, pressing the
"make an executable file" button in Dr.Racket, from making an executable file using bigloo.
Another question is, that im having problems ...
0
votes
1answer
233 views
Compiling with Bigloo
I've written a scheme file in DrRacket/Scheme and I have my .rkt file. I need to now compile what I've written with Bigloo. I have Bigloo installed, but I'm not sure how to use it.
Anyone know how?