Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
309 views

Is there a lint for Common Lisp or Chicken Scheme?

Something akin to C's splint, Haskell's HLint, Perl's B::Lint, etc.?
4
votes
2answers
148 views

Good way to do “either/or” relationship in Entity Framework (SQL Server)

Let's say I have two entity objects "table" and "chicken." Now let's say, I have a "wing" object, and I want that wing to have a 0..1-1 relationship with table and chicken. In otherwords, I want a ...
4
votes
2answers
552 views

Problem in porting Chicken of VNC Mac application into iphone application

I'm porting Chicken of VNC Mac application into iphone application I am having source code of Chicken of VNC Mac application which take vnc of any LAN connected mac. I have to do same with iphone ...
4
votes
3answers
126 views

Is there an equivalent to “run-program” in common lisp in scheme?

I can run (run-program "/usr/ls" '()) in sbcl, is there an equivalent in any scheme implementation? Chicken.. r6rs?
1
vote
3answers
178 views

Does Chicken Scheme have an equivalent to Perl's $0?

How can I reliably get the script name in Chicken Scheme? It seems that -ss eats up the script name, so it's not visible unless I use dot slash to run my scripts. scriptedmain.scm: #!/usr/bin/env ...
1
vote
1answer
157 views

How can I read and write binary floats with Chicken Scheme?

I am reading a binary data format using Chicken, and so far I've gotten ints working by doing stuff like (fx+ (fxshl (read-byte) 8) (read-byte)) (Big Endian). How can I read and write floats in? I ...
0
votes
2answers
55 views

How do you define a variadic function in a Chicken Scheme module?

Is this a bug in Chicken Scheme? #;1> (define (foo x . y) x) #;2> (foo 1 2 3) 1 #;3> (module bar (import scheme chicken) (define (foo x . y) x)) Error: invalid syntax in macro form: (foo x ...