Re: ,apropos with the git module

2018-10-30 Thread Catonano
Il giorno dom 28 ott 2018 alle ore 14:50 Catonano ha scritto: > I run into a behaviour of the REPL that is getting me confused > > it's on Guile 2.2.2 as packaged on Fedora 28 > > If I import > > ,use (git repositoy) > > then > > ,apropos repositoy > > returns a bunch of functions > > If I import

Re: Beginner questions

2018-10-30 Thread Alex Vong
swedebugia writes: > Hi > Hello, > I would like to learn more scheme and I would like to make a small CLI If you have time, I suggest you to watch the Structure and Interpretation of Computer Programs (SICP) lecture series[0][1]. It is a classic. The videos were recorded in 1986. However, the t

Re: Beginner questions

2018-10-30 Thread Mark H Weaver
Hi, swedebugia writes: > I would like to learn more scheme and I would like to make a small CLI > program that runs in the terminal and prompts the user for input and > evaluates it. This sounds like a description of Guile's REPL itself. Are you looking to implement your own simple REPL for ed

Re: Beginner questions

2018-10-30 Thread Alex Sassmannshausen
Hello! swedebugia writes: > Hi > > I would like to learn more scheme and I would like to make a small CLI > program that runs in the terminal and prompts the user for input and > evaluates it. > > Is that possible with guile? In the REPL? > > Can someone point me in the right direction for succ