Re: [racket-users] Are the terms "function" and "procedure" synonymous in Racket?

2019-01-21 Thread George Neuner
On 1/21/2019 11:52 PM, Anthony Carrico wrote: On 1/18/19 6:36 PM, George Neuner wrote: > Historically, many computer language designers were mathematicians, and > they deliberately sought to distinguish "computer" functions from > "mathematical" functions. > > It has yet to work completely -

Re: [racket-users] Are the terms "function" and "procedure" synonymous in Racket?

2019-01-21 Thread Anthony Carrico
On 1/18/19 6:36 PM, George Neuner wrote: > Historically, many computer language designers were mathematicians, and > they deliberately sought to distinguish "computer" functions from > "mathematical" functions. > > It has yet to work completely - witness the legions of newbies every > year who

[racket-users] Distributed places question

2019-01-21 Thread Matt Jadud
Hi all, I have too much code for a "minimal working example." Every time I run a distributed places program, I get different results. Sadly, it's complex, and I'm confident there are multiple places I could be missing something. This is all running on a 256-core machine, and my distributed

Re: [racket-users] ann: forms

2019-01-21 Thread Jack Rosenthal
> Documentation: http://docs.racket-lang.org/forms/index.html > Source code: https://github.com/Bogdanp/racket-forms Bogdan, That looks really cool! I'll have to make use of it in a future project ;) Thanks for sharing! -- Jack M. Rosenthal http://jack.rosenth.al Be kind to everyone that you

Re: [racket-users] Help on a fuction syntax (beginner)

2019-01-21 Thread Neil Van Dyke
netraken wrote on 1/21/19 2:51 PM: (define (enum-var-dim n v) (if ( = n 2) (cons (fst (cantor-enum v)) (snd (cantor-enum v))) (cons (fst (cantor-enum v))(enum-var-dim (sub1 n) (snd (cantor-enum v)) This is looking nicely Rackety. :) Running (enum-var-dim n value) outputs

Re: [racket-users] Help on a fuction syntax (beginner)

2019-01-21 Thread netraken
On 20/01/2019 15:33, Neil Van Dyke wrote: [lot of helpful information] OK, it works now. I could finally strip it down to (define (enum-var-dim n v) (if ( = n 2) (cons (fst (cantor-enum v)) (snd (cantor-enum v))) (cons (fst (cantor-enum v))(enum-var-dim (sub1 n) (snd (cantor-enum

[racket-users] ann: forms

2019-01-21 Thread Bogdan Popa
Hey all, I needed a web form validation library last week and web-server-lib's formlets don't, afaict, provide any facilities for collecting and displaying validation errors to the end user so I made "forms" to scratch that particular itch. I hope it proves useful to some of you!

[racket-users] Re: [how to] search for #lang languages in packages and GitHub?

2019-01-21 Thread Simon Schlee
> > Does anyone know good way to search for Racket #lang languages in packages > and github? (GitHub advanced search is dire) > Maybe this helps you: https://searchcode.com/?q=%23lang=143 -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To