Jump to content
xisto Community
Sign in to follow this  
xboxrulz1405241485

Does Anyone Code Using Turing A student programming language

Recommended Posts

Does anyone use Turing here? It's a Delphi/Pascal based programming language developed by University of Toronto and is now owned by Holt Software in Toronto.Sample:var name:stringvar input:stringput "Please enter your name"get name:*clsput "Please enter your message: " .., inputclsput "Your name is: ", nameput "Your message : ", inputIt should accept your name and show your name and message.xboxrulz

Edited by microscopic^earthling (see edit history)

Share this post


Link to post
Share on other sites

Turing

Does Anyone Code Using Turing

 

Replying to xboxrulz

Yeah. I used Turing in my Grade 10 Computer Enginering class. It is VERY simple to learn, and it's object-based (polygons, etc). Despite its simplicity, you can do some pretty cool stuff. Go to compsci.Ca for Turing help, tutorials, and submissions from other users. I find that there are alot of people there who know alot about it (maybe too much...)

 

-reply by pkjr92

Share this post


Link to post
Share on other sites

just fixing up

Does Anyone Code Using Turing

 

Var name:string

Var input:string

 

Put "Please enter your name"

Get name:*

Cls

Put "Please enter your message: " .. Get input

Cls

Put "Your name is : ", name

Put "Your message : ", input

 

 

-reply by David

Share this post


Link to post
Share on other sites

Most grade 10 introductory to computer science class uses Turing to teach students the basics of programming. It is fairly simple and easy to understand.Var name:stringVar input:stringPut "Please enter your name"Get name:*ClsPut "Please enter your message: " .. Get inputClsPut "Your name is : ", namePut "Your message : ", inputCls isn't that necessary in the above script, there isn't really a necessity to hide the name nor input.- Stanley

Share this post


Link to post
Share on other sites
Just bumping to remind:Does Anyone Code Using Turing

Turing is case-sensitive, so Put wouldn't register, nor Var or Get.

Also, Cls doesn't work in my version of turing. 

-reply by Isak

 

Share this post


Link to post
Share on other sites

I fixed the program

var name:stringVar input:string

put "Please enter your name"Get name:*ClsPut "Please enter your message: " Get input:*ClsPut "Your name is: ", namePut "Your message : ", input 

Share this post


Link to post
Share on other sites

No I fixed it

var name:string

Var message:string

Put "Please enter your name"Get name:*ClsPut "Please enter your message: " Get message:*ClsPut "Your name is: ", namePut "Your message : ", message

 

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.