1
0
mirror of https://github.com/gsi-upm/sitc synced 2025-01-09 12:31:27 +00:00

Compare commits

..

No commits in common. "21dc5ec3deb8bba550b39e059e8a8b41a1967153" and "75f08ea170340ede65eb14736048e8157919be09" have entirely different histories.

View File

@ -66,7 +66,7 @@
"\n", "\n",
"This means:\n", "This means:\n",
"* ** dynamically typed**: variables do not declare a static type (as in Java int a = 2;). Variables have no type themselves, they are just names that hold a reference to some object. The type of the variable is changed dynamically when you change the type of the assigned data object. \n", "* ** dynamically typed**: variables do not declare a static type (as in Java int a = 2;). Variables have no type themselves, they are just names that hold a reference to some object. The type of the variable is changed dynamically when you change the type of the assigned data object. \n",
"* **strongly typed**: the interpreter tracks variable types. There is no implicit type conversion. This means that all the type variables should be converted manually, preventing from unexpected behaviour. " "* **strongly typed**: the interpreter tracks variable types. There is no explicit type conversion. For example, in Javascript we can "
] ]
}, },
{ {