Re: [racket-users] Why ~a, ~s, and ~v?

2020-10-26 Thread Robby Findler
v is for "value" I believe. Robby On Mon, Oct 26, 2020 at 8:01 PM Sam Tobin-Hochstadt wrote: > That page actually suggests they're inherited from Common Lisp, which > seems very likely (and probably from some other Lisp before that). > > Sam > > On Mon, Oct 26, 2020 at 8:59 PM Sorawee Porncharo

Re: [racket-users] Why ~a, ~s, and ~v?

2020-10-26 Thread Sam Tobin-Hochstadt
That page actually suggests they're inherited from Common Lisp, which seems very likely (and probably from some other Lisp before that). Sam On Mon, Oct 26, 2020 at 8:59 PM Sorawee Porncharoenwase wrote: > > I had this question too. It looks like they are inherited from Scheme. > > ~a = any > ~s

Re: [racket-users] Why ~a, ~s, and ~v?

2020-10-26 Thread Sorawee Porncharoenwase
I had this question too. It looks like they are inherited from Scheme. ~a = any ~s = s-expression See http://wiki.call-cc.org/eggref/5/format#documentation. There's no ~v. IIUC, there's no `print` in Scheme. On Mon, Oct 26, 2020 at 5:50 PM primer wrote: > > I'm reading the documentation about

[racket-users] Why ~a, ~s, and ~v?

2020-10-26 Thread primer
I'm reading the documentation about formatted output where it says: ~a or ~A displays the next argument ~s or ~S writes the next argument ~v or ~V prints the next argument I can't help thinking these would be more intuitive if they were spelled ~d, ~w, and ~p. Perhaps I can remember them better

Re: [racket-users] benchmarks game

2020-10-26 Thread Raoul Schorer
Hi Matthew, I tried on: - Windows 8.1 + RacketCS 7.8 - Linux Debian 10 + Racket 7.9 (current master branch) - Linux Debian 10 + RacketBC 7.8 All have the same behaviour: while the sequential program prints to stdout as expected in all cases (with or without `raco make` prior to running, and ru