deech_99 | 23 Nov 22:47
Favicon

Re: How quit?

--- In ocaml_beginners <at> yahoogroups.com, "murray2004eisenberg"
<murray <at> ...> wrote:
>
> How do I quit/exit/end an interactive Objective Caml session? I don't
> see this mentioned in the getting started docs.
>

Use the exit method. In the toplevel type:
# exit 1;;

I am not sure what the number after 'exit' does. The exit function is
defined as:
# exit ;;
- : int -> 'a = <fun>

-deech

__._,_.___
Recent Activity
Visit Your Group
Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

New business?

Get new customers.

List your web site

in Yahoo! Search.

Yahoo! Groups

Going Green Zone

Learn to go green.

Save energy. Save the planet.

.

__,_._,___
Dario Teixeira | 23 Nov 22:56
Favicon

Re: Re: How quit?

Hi,

> How do I quit/exit/end an interactive Objective Caml session?
> I don't see this mentioned in the getting started docs.

Why would you want to quit? :-)

Try also "#quit;;", or even faster, press Ctrl+D.

Cheers,
Dario

__._,_.___
Recent Activity
Visit Your Group
Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

New web site?

Drive traffic now.

Get your business

on Yahoo! search.

Check out the

Y! Groups blog

Stay up to speed

on all things Groups!

.

__,_._,___
Marek Kubica | 24 Nov 01:19

Re: Re: How quit?

On Sun, 23 Nov 2008 21:47:50 -0000
"deech_99" <deech_99 <at> yahoo.com> wrote:

> I am not sure what the number after 'exit' does.

I suppose it is the exit value that the program returns its caller.

regards,
Marek

__._,_.___
Recent Activity
Visit Your Group
Give Back

Yahoo! for Good

Get inspired

by a good cause.

Y! Toolbar

Get it Free!

easy 1-click access

to your groups.

Yahoo! Groups

Start a group

in 3 easy steps.

Connect with others.

.

__,_._,___
David Lloyd | 24 Nov 08:15
Favicon

Re: Re: How quit?


Howdy,

bash-3.2$ ocaml
Objective Caml version 3.10.2

# exit 1;;
bash-3.2$ echo $?
1
bash-3.2$ ocaml
Objective Caml version 3.10.2

# exit 50;;
bash-3.2$ echo $?
50

The $? variable is the value that the terminated process returned.

DSL

__._,_.___
Recent Activity
Visit Your Group
Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

New business?

Get new customers.

List your web site

in Yahoo! Search.

Yahoo! Groups

Going Green Zone

Learn to go green.

Save energy. Save the planet.

.

__,_._,___

Gmane