From: RM3sh on
Hi Group,

I hope i am in the right place

i only have 0/10 knowledge in tcl/tk

Questions:
#. am i on the right place (group) ? if, yes
#. where to download tcl/tk?
#. where should i extract downloaded files to?
#. how do i configure?
#. where do i write my 'Hello world' program?
#. how should i write my 'Hello world' program?
#. is there any other thing i should know/study about tcl/tk?

Direct me.............

Thanks
RM3sh
From: Óscar Fuentes on
RM3sh <ramesh1703(a)gmail.com> writes:

[snip]

> Direct me.............

www.tcl.tk

--
Óscar
From: Arjen Markus on
On 6 jan, 06:51, RM3sh <ramesh1...(a)gmail.com> wrote:
> Hi Group,
>
> I hope i am in the right place
>
> i only have 0/10 knowledge in tcl/tk
>
> Questions:
> #. am i on the right place (group) ? if, yes
> #. where to download tcl/tk?
> #. where should i extract downloaded files to?
> #. how do i configure?
> #. where do i write my 'Hello world' program?
> #. how should i write my 'Hello world' program?
> #. is there any other thing i should know/study about tcl/tk?
>
> Direct me.............
>
> Thanks
> RM3sh

Besides www.tcl.tk you can also have a look at the Tclers' Wiki:
wiki.tcl.tk
(though the first site will guide you there too).

There are quite a few tutorials to be found. If you are looking for a
very
basic one (one that assumes very little if any at all programming
experience),
it so happens I am working on one. Just let me know.

Regards,

Arjen
From: RM3sh on
On Jan 6, 1:54 am, Arjen Markus <arjen.markus...(a)gmail.com> wrote:
> On 6 jan, 06:51, RM3sh <ramesh1...(a)gmail.com> wrote:
>
>
>
> > Hi Group,
>
> > I hope i am in the right place
>
> > i only have 0/10 knowledge in tcl/tk
>
> > Questions:
> > #. am i on the right place (group) ? if, yes
> > #. where to download tcl/tk?
> > #. where should i extract downloaded files to?
> > #. how do i configure?
> > #. where do i write my 'Hello world' program?
> > #. how should i write my 'Hello world' program?
> > #. is there any other thing i should know/study about tcl/tk?
>
> > Direct me.............
>
> > Thanks
> > RM3sh
>
> Besideswww.tcl.tkyou can also have a look at the Tclers' Wiki:
> wiki.tcl.tk
> (though the first site will guide you there too).
>
> There are quite a few tutorials to be found. If you are looking for a
> very
> basic one (one that assumes very little if any at all programming
> experience),
> it so happens I am working on one. Just let me know.
>
> Regards,
>
> Arjen

Hey Arjen

Thanks for your reply. i just want to run a "Hello world" program. to
do that i need to configure/install TCL

Lets say i have the following code

% puts "Hello, world"

question is , where do i type; how do i run; where do i see the
result; ? blah blah you know what beginner needs.

FYI: I rate "0" out of "10"


Thanks
RM3sh
From: Arjen Markus on
On 6 jan, 10:33, RM3sh <ramesh1...(a)gmail.com> wrote:
> On Jan 6, 1:54 am, Arjen Markus <arjen.markus...(a)gmail.com> wrote:
>
>
>
>
>
> > On 6 jan, 06:51, RM3sh <ramesh1...(a)gmail.com> wrote:
>
> > > Hi Group,
>
> > > I hope i am in the right place
>
> > > i only have 0/10 knowledge in tcl/tk
>
> > > Questions:
> > > #. am i on the right place (group) ? if, yes
> > > #. where to download tcl/tk?
> > > #. where should i extract downloaded files to?
> > > #. how do i configure?
> > > #. where do i write my 'Hello world' program?
> > > #. how should i write my 'Hello world' program?
> > > #. is there any other thing i should know/study about tcl/tk?
>
> > > Direct me.............
>
> > > Thanks
> > > RM3sh
>
> > Besideswww.tcl.tkyoucan also have a look at the Tclers' Wiki:
> > wiki.tcl.tk
> > (though the first site will guide you there too).
>
> > There are quite a few tutorials to be found. If you are looking for a
> > very
> > basic one (one that assumes very little if any at all programming
> > experience),
> > it so happens I am working on one. Just let me know.
>
> > Regards,
>
> > Arjen
>
> Hey Arjen
>
> Thanks for your reply. i just want to run a "Hello world" program. to
> do that i need to configure/install TCL
>
> Lets say i have the following code
>
> % puts "Hello, world"
>
> question is , where do i type; how do i run; where do i see the
> result; ? blah blah you know what beginner needs.
>
> FYI: I rate "0" out of "10"
>
> Thanks
> RM3sh- Tekst uit oorspronkelijk bericht niet weergeven -
>
> - Tekst uit oorspronkelijk bericht weergeven -

Start with downloading a distro of Tcl/Tk, if you have none.
ActiveTcl (activestate.com/tcl) is a nice and complete distribution.

You can work interactively (that is: type in the command you want to
run on a prompt) or you can edit a file, save it and then run it.

In the first case, run the Tcl shell:

> tclsh

Then a prompt appears and you can start typing your commands.
(exit will end the shell)

In the second case, if your program is called hello.tcl:

> tclsh hello.tcl

The program is run to the end and then the shell stops.

Tcl source files are simple text files, no frills. Use any text editor
you like.

This is the most basic information I think I can give you.

Regards,

Arjen