* [Caml-list] [Release] ocaml2: ocaml with editable line history
@ 2002-12-05 7:01 SooHyoung Oh
2002-12-05 10:20 ` Mike Potanin
2002-12-06 1:54 ` Jaeyoun Chung
0 siblings, 2 replies; 5+ messages in thread
From: SooHyoung Oh @ 2002-12-05 7:01 UTC (permalink / raw)
To: Caml-List
I'm very pleased for my first contribution on ocaml world.
<ocaml2> is the ocaml interpreter with editable line history which
implemented using libgetline library.
Please visit http://www.taglib.co.kr/ocaml/index.html and enjoy it.
===================== Readme ==============
What is ocaml2?
If you want to correct mistyped lines in ocaml, ocaml2 is very useful.
It supports editable line histories using libgetline.
See getline manuaual for more information.
Version: ocaml2 version 0.1
Prerequsite: (I tested only on these releases.)
ocaml: version 3.06
libgetline: version 3.9
Files:
README - This file
Makefile - Makefile
getline.ml - external function declarations
log.make - make log
ocaml2.ml - main program
prim_getline.c - C interface functions for libgetline
How to make:
(0) untar and cd in the directory
% tar zxvf ocaml2.tgz
% cd ocaml2
(1) edit Makefile (eg: % vi Makefile)
I assume that "getline.h" is in /usr/local/include and
libgetline.a in /usr/local/lib.
(2) % make
(3) (optional testing) % ./ocaml2
(4) (optional installation)
% su
# make install
How to use:
See getline manual. (eg. % man getline)
---
SooHyoung Oh
http://www.duonix.com
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Caml-list] [Release] ocaml2: ocaml with editable line history
2002-12-05 7:01 [Caml-list] [Release] ocaml2: ocaml with editable line history SooHyoung Oh
@ 2002-12-05 10:20 ` Mike Potanin
2002-12-06 1:54 ` Jaeyoun Chung
1 sibling, 0 replies; 5+ messages in thread
From: Mike Potanin @ 2002-12-05 10:20 UTC (permalink / raw)
To: Caml-List
On Thu, 5 Dec 2002, SooHyoung Oh wrote:
>
> I'm very pleased for my first contribution on ocaml world.
> <ocaml2> is the ocaml interpreter with editable line history which
> implemented using libgetline library.
> Please visit http://www.taglib.co.kr/ocaml/index.html and enjoy it.
The interesting effect will if evaluate code
let rec a _ = a () in Printf.printf "%s" "# " ; flush stdout; a ();;
in the ocaml2 :-).
Whether there is a way to create the new top using getline? It would be
very nice!
>
> ===================== Readme ==============
> What is ocaml2?
> If you want to correct mistyped lines in ocaml, ocaml2 is very useful.
> It supports editable line histories using libgetline.
> See getline manuaual for more information.
>
> Version: ocaml2 version 0.1
>
> Prerequsite: (I tested only on these releases.)
> ocaml: version 3.06
> libgetline: version 3.9
>
> Files:
> README - This file
> Makefile - Makefile
> getline.ml - external function declarations
> log.make - make log
> ocaml2.ml - main program
> prim_getline.c - C interface functions for libgetline
>
> How to make:
> (0) untar and cd in the directory
> % tar zxvf ocaml2.tgz
> % cd ocaml2
> (1) edit Makefile (eg: % vi Makefile)
> I assume that "getline.h" is in /usr/local/include and
> libgetline.a in /usr/local/lib.
> (2) % make
> (3) (optional testing) % ./ocaml2
> (4) (optional installation)
> % su
> # make install
>
> How to use:
> See getline manual. (eg. % man getline)
>
> ---
> SooHyoung Oh
> http://www.duonix.com
>
> -------------------
> To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
> Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
>
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Caml-list] [Release] ocaml2: ocaml with editable line history
2002-12-05 7:01 [Caml-list] [Release] ocaml2: ocaml with editable line history SooHyoung Oh
2002-12-05 10:20 ` Mike Potanin
@ 2002-12-06 1:54 ` Jaeyoun Chung
2002-12-06 7:10 ` Sven Luther
2002-12-06 11:01 ` SooHyoung Oh
1 sibling, 2 replies; 5+ messages in thread
From: Jaeyoun Chung @ 2002-12-06 1:54 UTC (permalink / raw)
To: SooHyoung Oh; +Cc: Caml-List
* "SooHyoung Oh" <shoh@duonix.com> at 2002-12-05 16:01+0900
| I'm very pleased for my first contribution on ocaml world.
| <ocaml2> is the ocaml interpreter with editable line history which
| implemented using libgetline library.
What's difference between ocaml2 and "ledit ocaml" ?
[...]
--
jay
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Caml-list] [Release] ocaml2: ocaml with editable line history
2002-12-06 1:54 ` Jaeyoun Chung
@ 2002-12-06 7:10 ` Sven Luther
2002-12-06 11:01 ` SooHyoung Oh
1 sibling, 0 replies; 5+ messages in thread
From: Sven Luther @ 2002-12-06 7:10 UTC (permalink / raw)
To: Jaeyoun Chung; +Cc: SooHyoung Oh, Caml-List
On Fri, Dec 06, 2002 at 10:54:10AM +0900, Jaeyoun Chung wrote:
>
> * "SooHyoung Oh" <shoh@duonix.com> at 2002-12-05 16:01+0900
> | I'm very pleased for my first contribution on ocaml world.
> | <ocaml2> is the ocaml interpreter with editable line history which
> | implemented using libgetline library.
>
> What's difference between ocaml2 and "ledit ocaml" ?
You don't need an external tool ?
Friendly,
Sven Luther
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Caml-list] [Release] ocaml2: ocaml with editable line history
2002-12-06 1:54 ` Jaeyoun Chung
2002-12-06 7:10 ` Sven Luther
@ 2002-12-06 11:01 ` SooHyoung Oh
1 sibling, 0 replies; 5+ messages in thread
From: SooHyoung Oh @ 2002-12-06 11:01 UTC (permalink / raw)
To: jay; +Cc: Caml-List
I didn't realize ledit had the same function.
---
SooHyoung Oh
http://www.duonix.com
----- Original Message -----
From: "Jaeyoun Chung" <jay@kldp.org>
To: "SooHyoung Oh" <shoh@duonix.com>
Cc: "Caml-List" <caml-list@inria.fr>
Sent: Friday, December 06, 2002 10:54 AM
Subject: Re: [Caml-list] [Release] ocaml2: ocaml with editable line history
>
> * "SooHyoung Oh" <shoh@duonix.com> at 2002-12-05 16:01+0900
> | I'm very pleased for my first contribution on ocaml world.
> | <ocaml2> is the ocaml interpreter with editable line history which
> | implemented using libgetline library.
>
> What's difference between ocaml2 and "ledit ocaml" ?
>
> [...]
>
> --
> jay
> -------------------
> To unsubscribe, mail caml-list-request@inria.fr Archives:
http://caml.inria.fr
> Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ:
http://caml.inria.fr/FAQ/
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
>
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2002-12-06 10:58 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-12-05 7:01 [Caml-list] [Release] ocaml2: ocaml with editable line history SooHyoung Oh
2002-12-05 10:20 ` Mike Potanin
2002-12-06 1:54 ` Jaeyoun Chung
2002-12-06 7:10 ` Sven Luther
2002-12-06 11:01 ` SooHyoung Oh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox