[racket-users] Compiler Construction (CC) 2021 - Call for Papers

2020-10-13 Thread delphine...@gmail.com
ACM SIGPLAN 2021 International Conference on Compiler Construction (CC 2021) Co-located with CGO, HPCA and PPoPP Sat 27 February - Wed 3 March 2021 https://conf.researchr.org/home/CC-2021 CALL FOR PAPERS The International Conference on Compiler Construction (CC) is interested in work on processin

[racket-users] [scribble] Are nested lists possible?

2020-10-13 Thread David Storrs
@itemlist[ @item{The size cage needed depends on the type of dog @itemlist[ @item{Pug: Small} @item{Collie: Medium} @item{Mastiff: Large}]}] I would like to produce something that looks like this: - The size cage needed depends on the type of dog - Pug: Small - Co

Re: [racket-users] [scribble] Are nested lists possible?

2020-10-13 Thread Ben Greenman
On 10/13/20, David Storrs wrote: > @itemlist[ > @item{The size cage needed depends on the type of dog > @itemlist[ > @item{Pug: Small} > @item{Collie: Medium} > @item{Mastiff: Large}]}] > > I would like to produce something that looks like this: > >- The size cage needed depe

Re: [racket-users] [scribble] Are nested lists possible?

2020-10-13 Thread David Storrs
On Tue, Oct 13, 2020 at 12:48 PM Ben Greenman wrote: > On 10/13/20, David Storrs wrote: > > @itemlist[ > > @item{The size cage needed depends on the type of dog > > @itemlist[ > > @item{Pug: Small} > > @item{Collie: Medium} > > @item{Mastiff: Large}]}] > > > > I would like to p

Re: [racket-users] [scribble] Are nested lists possible?

2020-10-13 Thread David Storrs
Argh. Wrong code. Please ignore prior message. On Tue, Oct 13, 2020 at 12:57 PM David Storrs wrote: > > > On Tue, Oct 13, 2020 at 12:48 PM Ben Greenman > wrote: > >> On 10/13/20, David Storrs wrote: >> > @itemlist[ >> > @item{The size cage needed depends on the type of dog >> > @itemlist

Re: [racket-users] [scribble] Are nested lists possible?

2020-10-13 Thread David Storrs
Okay, apparently it doesn't like having an itemlist inside of a {} block at all, but as long as it's outside of one then nested lists are fine. Ugh. I know Scribble is super good because it makes beautiful documentation and does cross-linking and examples and all that, but it's also a complete pai

Re: [racket-users] [scribble] Are nested lists possible?

2020-10-13 Thread Sorawee Porncharoenwase
apparently it doesn’t like having an itemlist inside of a {} block at all I’m not sure if I totally understand it, but this doesn’t appear to be true. The below doc renders correctly as I expect. #lang scribble/manual @itemlist[ @item{foo @itemlist[ @item{bar} @item

[racket-users] Racket-mode (emacs) get coverage without using test submodule

2020-10-13 Thread 'Julian' via Racket Users
Hi, For reasons X and Y that I won't get into I'm using Emacs instead of DrRacket for writing racket code for the Programming languages class that I'm taking. I have found that racket-mode (as recommended by https://docs.racket-lang.org/guide/Emacs.html) is able to do a lot of neat things and

Re: [racket-users] [scribble] Are nested lists possible?

2020-10-13 Thread William J. Bowman
> >>> @defproc[(trie-add-item+data! [arg trie?][item (listof any/c)][#:combine Is the issue that you rebound `item`? On Tue, Oct 13, 2020 at 10:20:24AM -0700, Sorawee Porncharoenwase wrote: > apparently it doesn’t like having an itemlist inside of a {} block at all > > I’m not sure if I totally u

Re: [racket-users] [scribble] Are nested lists possible?

2020-10-13 Thread David Storrs
On Tue, Oct 13, 2020 at 6:52 PM William J. Bowman wrote: > > >>> @defproc[(trie-add-item+data! [arg trie?][item (listof > any/c)][#:combine > Is the issue that you rebound `item`? > > ... Yes. Yes, that is exactly the issue. I hate my life. Thank you. On Tue, Oct 13, 2020 at 10:20:24AM -070