top of page
Search
  • Writer's pictureMasihini Team

Function and Variable Declaration Restrictions


Masihini Lang is NOT a polymorphic programming language, this meaning that two functions may not be identified by the same name, regardless of the number or type of parameters is contains.


This restriction also means that two variables may not be identified by the same name in the same context on in a shared context, this meaning that:

  • Two local variables in the same function may no be named equally.

  • A local and a global variable may not be names equally..

  • But two local variables that don't share the same context, this meaning, that they come from different functions MAY share the same name.


2 views0 comments

Recent Posts

See All

Комментарии


bottom of page