Re: [racket-users] Question regarding the function printBoard board

2019-04-24 Thread orenpa11
Thanks On Tuesday, April 23, 2019 at 10:12:00 PM UTC+3, Stefan Schmiedl wrote: > > > "orenpa11" >, 23.04.2019, 20:53: > > > Hi > > I am using the functionprintBoard board (DrRacket Pretty Big) > > > > (printBoard '((0 0 2 0) (0

Re: [racket-users] Question regarding the function printBoard board

2019-04-23 Thread orenpa11
nal function and replace the “” by (void) like > so: > > ... > (cond ((empty? board) (void) ) > ... > > Dexter > > On Apr 23, 2019, at 8:53 PM, orenpa11 > > wrote: > > Hi > I am using the functionprintBoard board (DrRacket Pretty Big) > > (pr

[racket-users] Question regarding the function printBoard board

2019-04-23 Thread orenpa11
Hi I am using the functionprintBoard board (DrRacket Pretty Big) (printBoard '((0 0 2 0) (0 0 0 0) (0 0 8 0) (0 0 0 0))) and the result is (0 0 2 0) (0 0 0 0) (0 0 8 0) (0 0 0 0) "" How do I delete the "" ? I would like the output to be (0 0 2 0) (0 0 0 0) (0 0 8 0) (0 0 0 0)

[racket-users] Transfer code from "intermediate student with lamnda" to "Pretty big"

2019-02-19 Thread orenpa11
Hi Is it possible to transfer code from "intermediate student with lamnda" to "Pretty big" for exmple : (require 2htdp/image) (require 2htdp/universe) (define (join-together ls1 ls2) (local [; help : [ListOf X] -> [ListOf X] ; (help ls1) drops the invariant argument ls2

[racket-users] Re: I am looking for someone who can code me a memory game in drracket. I pay for it.

2019-02-09 Thread orenpa11
Hi, Did you write the code in DrRacket ? Thanks, Or On Monday, May 21, 2018 at 2:28:26 PM UTC+3, ronen...@leobaeck.net wrote: > > Hey I need a code of memory game in Drracket in any language. I'll pay you > for this:D. > -- You received this message because you are subscribed to the Google

Re: [racket-users] How to start a program in pretty big

2019-02-07 Thread orenpa11
e Pretty Big. > > > > > On Feb 7, 2019, at 11:57 AM, orenpa11 > > wrote: > > > > Hi, > > If I would like to write a code in pretty big what is the first line > that need to be written ? > > Can I use #lang ? > > > > Thanks, > > Or &

[racket-users] How to start a program in pretty big

2019-02-07 Thread orenpa11
Hi, If I would like to write a code in pretty big what is the first line that need to be written ? Can I use #lang ? Thanks, Or -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from

Re: [racket-users] snake game

2019-01-28 Thread orenpa11
x) (circle (+ x 1) 'solid 'red))) > (on-tick sub1) > (stop-when zero?)) > > (test) > > > Now please do the rest of your homework yourself. > > > On Jan 26, 2019, at 2:55 PM, orenpa11 > > wrote: > > Hi Matthias , > I am sorry but I still did get it. > shou

Re: [racket-users] snake game

2019-01-26 Thread orenpa11
bbreviations" to pretty big ? Does Pretty Big has drawing functions ? Thanks, Or On Friday, January 25, 2019 at 5:33:50 PM UTC+2, Matthias Felleisen wrote: > > > See below. I gave precise instructions. > > > > On Jan 25, 2019, at 10:27 AM, orenpa11 > > wrote:

Re: [racket-users] snake game

2019-01-25 Thread orenpa11
Hi, Sorry but I did not get it. should I add the path to the rkt file or add the code ? Thanks, Or On Friday, January 25, 2019 at 1:39:12 PM UTC+2, Matthias Felleisen wrote: > > > DrRacket -> File -> Open Require Path -> enter test- -> use mouse > > > On Jan 2

Re: [racket-users] snake game

2019-01-24 Thread orenpa11
> > > Yes there is. Use (require test-engine/racket-tests) > at the top and (test) at the bottom. > > But it sounds like you’re copying and pasting homework > solutions. Hmph. > > > > > > On Jan 24, 2019, at 3:44 PM, orenpa11 > > wrote: > > >

Re: [racket-users] snake game

2019-01-24 Thread orenpa11
g in over a decade in education, > neither does anyone in the Racket edu community proper. > > This community supports people readily wth answers, but > we need to know what you know. > > — Matthias > > > > > > On Jan 24, 2019, at 12:56 PM, orenpa11 >

Re: [racket-users] snake game

2019-01-24 Thread orenpa11
Hi I need to create a project in pertty big . why this code is not been supported ? Thanks, Or On Thursday, January 24, 2019 at 3:29:11 PM UTC+2, Kieron Hardy wrote: > > The language you should be using is "Beginning Student with List > Abbreviations". > > On Jan 24, 2

Re: [racket-users] snake game

2019-01-24 Thread orenpa11
ou copied and pasted the >>> text from somewhere else into a buffer where the language level was already >>> set. It looks to me like you should do the following: >>> >>> 1) Delete the first three lines of the file. >>> 2) Set the language level to

Re: [racket-users] snake game

2019-01-23 Thread orenpa11
roblem; your screenshot shows header text that should not >>> appear in the window, which suggests to me that you copied and pasted the >>> text from somewhere else into a buffer where the language level was already >>> set. It looks to me like you should do the followi

Re: [racket-users] snake game

2019-01-23 Thread orenpa11
ready >> set. It looks to me like you should do the following: >> >> 1) Delete the first three lines of the file. >> 2) Set the language level to “beginner with list abbreviations”. >> 3) Click “run” >> >> John Clements >> >> > On Jan 2

Re: [racket-users] snake game

2019-01-23 Thread orenpa11
; What happens when you run it? Are you getting any error messages? > > On Wed, Jan 23, 2019 at 1:01 PM orenpa11 > > wrote: > > > > Hi > > I am trying to implemet this code of "snake game " > > https://course.ccs.neu.edu/csu211/code/snake-full.ss

[racket-users] snake game

2019-01-23 Thread orenpa11
Hi I am trying to implemet this code of "snake game " https://course.ccs.neu.edu/csu211/code/snake-full.ss in DrRacket (Pretty big) But when I run it it is not working . any Idea ? Thanks Or -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To