Call a function: Difference between revisions

Content deleted Content added
m Add I language
Line 1,076: Line 1,076:


=={{header|I}}==
=={{header|I}}==
<lang i>
<lang i>software {
var line = read() //Calling a function with no arguments and getting a return value.
</lang>
var t = text(10) //Calling a function with fixed arguments.
print(1,2,3,4,5,6,7,8,9,0,line,t) //Calling a variadic function.
}</lang>


=={{header|Icon}} and {{header|Unicon}}==
=={{header|Icon}} and {{header|Unicon}}==