What typing discipline tags would you give this language? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What typing discipline tags would you give this language?

What tags of typing disciplines would you give a language who: - requires the variables to be declared before use. - requires the variable's data-type to be declared before use. - Checks the whole syntax and spelling before execution - Allows variables inside a variable declaration, which are different data type, to be converted to the host data-type without functions, and then proceed to calculating the remaining. - in other words compatible variable-types. This conversion is also in functions and subroutines. For example you declare an integer, but assign a double - it converts it to integer first and then assigns it. - Changing data-types is allowed during execution. (because of the conversion of flexible/compatible data-types) - In order to not make the variables lose meaning there is a keyword that requires the required data-type(for funcs and subs) to be exact, not converted.

28th Jun 2018, 6:00 PM
Stanislav Vladev
Stanislav Vladev - avatar
1 Answer
0
Yeah, but not in the style of duck typing exactly. With the same success you could begin with "var",.The purpose here is not to force the language to guess the data-type, but once declared , the languge checks what the data-type is and does the needed conversion. so instead of: integer int1 = 55 + integer(5.05) + Integer(string1) , you do: integer int1 = 55 + 5.05 + string1 Rather then converting with operators/functions the language looks at what is the host data-type and converts it.
28th Jun 2018, 6:32 PM
Stanislav Vladev
Stanislav Vladev - avatar