Computer Science Canada
Programming C, C++, Java, PHP, Ruby, Turing, VB
Username:
Password:
Register
Wiki
Blog
Search
Turing
Chat Room
Members
Can someone help explain "=" and ":=?
Index
->
Programming, Turing
->
Turing Help
Author
Message
jeffery1204
Posted:
Sun Dec 14, 2014 8:23 pm
Post subject: Can someone help explain "=" and ":=?
When programing, i m always confused when to use "=" or ":="
what does ":" this do?
Sponsor
Sponsor
Zren
Posted:
Sun Dec 14, 2014 9:15 pm
Post subject: RE:Can someone help explain "=" and ":=?
They're different operators.
:= is an assignment operator. Where you assign a value to a variable.
= is a comparison operator. Where you compare to see if the left side value equals the right side value.
Turing:
var
x
:
int
% Declare the variable name x, which represents an integer.
x
:=
4
% Set the value 4 to the variable x. The value of the variable x is now 4.
% Compare the left side to the right side.
if
x
=
10
then
put
"x is equal to 10"
else
put
"x is not equal to 10"
end
if
Quote:
what does ":" this do?
With it there, it's the assignment operator. Without it, it's a comparison operator.
It basically boils down to what "keyword" the guys who made the Turing language decided to use to represent the different operators.
It's like the difference between the word "a" and the word "at".
Display posts from previous:
All Posts
1 Day
7 Days
2 Weeks
1 Month
3 Months
6 Months
1 Year
Oldest First
Newest First
Index
->
Programming, Turing
->
Turing Help
Page
1
of
1
[ 2 Posts ]
Jump to:
Select a forum
CompSci.ca
------------
- Network News
- General Discussion
General Forums
-----------------
- Hello World
- Featured Poll
- Contests
Contest Forums
-----------------
- DWITE
- [FP] Contest 2006/2008
- [FP] 2005/2006 Archive
- [FP] 2004/2005 Archive
- Off Topic
Lounges
---------
- User Lounge
- VIP Lounge
Programming
--------------
- General Programming
General Programming Forums
--------------------------------
- Functional Programming
- Logical Programming
- C
C
--
- C Help
- C Tutorials
- C Submissions
- C++
C++
----
- C++ Help
- C++ Tutorials
- C++ Submissions
- Java
Java
-----
- Java Help
- Java Tutorials
- Java Submissions
- Ruby
Ruby
-----
- Ruby Help
- Ruby Tutorials
- Ruby Submissions
- Turing
Turing
--------
- Turing Help
- Turing Tutorials
- Turing Submissions
- PHP
PHP
----
- PHP Help
- PHP Tutorials
- PHP Submissions
- Python
Python
--------
- Python Help
- Python Tutorials
- Python Submissions
- Visual Basic and Other Basics
VB
---
- Visual Basic Help
- Visual Basic Tutorials
- Visual Basic Submissions
Education
-----------
- Student Life
Graphics and Design
-----------------------
- Web Design
Web Design Forums
---------------------
- (X)HTML Help
- (X)HTML Tutorials
- Flash MX Help
- Flash MX Tutorials
- Graphics
Graphics Forums
------------------
- Photoshop Tutorials
- The Showroom
- 2D Graphics
- 3D Graphics
Teams
------
- dTeam Public
Style:
Appalachia
blueSilver
eMJay
subAppalachia
subBlue
subCanvas
subEmjay
subGrey
subSilver
subVereor
Search:
You can syndicate this boards posts using the file
backend.php
or view the
topic map using sitemap.php.
Terms of Use
|
Privacy Policy