maxim_jaffe
2020-9-1 11:03:05

Hello! Can someone tell me if it’s possible to change DrRacket interface language, say to Portuguese?


spdegabrielle
2020-9-1 11:05:09

Hi @maxim_jaffe the Help menu lets you select language, but I don’t know if Portuguese is included


spdegabrielle
2020-9-1 11:05:55

My mistake - it looks like it is included!


soegaard2
2020-9-1 11:12:32

Also: the change does not take effect until after DrRacket is restarted.


maxim_jaffe
2020-9-1 12:37:36

@spdegabrielle @soegaard2 thanks :slightly_smiling_face:, how could I have missed that :sweat_smile:!


maxim_jaffe
2020-9-1 12:39:34

I was looking in the Edit -> Preferences dialog..!


maxim_jaffe
2020-9-1 12:40:17

Usually in the Help menu, I only use the first option Help -> Racket Documentation


cris2000.espinoza677
2020-9-1 13:30:11

press f1 and it will open a browser, searching the symbol that the caret is at in the documentation


evyatar2013
2020-9-1 14:21:24

is there a way to provide values (or something similar) with a list so it returns all the elements of the list? The goal is to do something like this: (define-values (a b c) (map (lambda (x) (+ x 1)) '(1 2 3)) ;a = 2, b = 3, c = 4


evyatar2013
2020-9-1 14:21:54

I know I can do it with a macro, but I wanted to double check it wasnt built into the language before I roll my own


samth
2020-9-1 14:23:31

(apply values ...)


notjack
2020-9-1 20:16:07

you can also achieve that goal with pattern matching (match-define (list a b c) (map ...))


fiseraris
2020-9-1 23:04:51

@fiseraris has joined the channel