We've noticed that you've been inactive for over 10 minute(s). We've stopped running the Shoutbox due to your inactivity. If you are back again, please click the I'm Back button below.
(18 April 2013 - 09:35 PM)however, why this mixing of capital letters in the middle of your text?
Replying to Does Anyone Code Using Turing
Topic Summary
Posted 28 September 2010 - 03:04 AM
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
Posted 19 January 2010 - 05:43 PM
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
Posted 26 March 2009 - 01:31 PM
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
Posted 13 September 2008 - 08:04 PM
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: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
Cls isn't that necessary in the above script, there isn't really a necessity to hide the name nor input.
- Stanley
Posted 06 June 2008 - 12:26 AM
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
Posted 08 June 2008 - 03:04 PM
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
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:string
var input:string
put "Please enter your name"
get name:*
cls
put "Please enter your message: " .., input
cls
put "Your name is: ", name
put "Your message : ", input
It should accept your name and show your name and message.