Hello world/Graphical: Difference between revisions

Content added Content deleted
(Realize in PascalABC)
(→‎{{header|Lambdatalk}}: adding lambdatalk task)
Line 2,224: Line 2,224:
=={{header|LabVIEW}}==
=={{header|LabVIEW}}==
{{VI solution|LabVIEW_Hello_world_Graphical.png}}
{{VI solution|LabVIEW_Hello_world_Graphical.png}}

=={{header|Lambdatalk}}==
<syntaxhighlight lang="scheme">
1) we add a new "alert" primitive to the lambdatalk's dictionary

{script
LAMBDATALK.DICT["alert"] = function() {
var args = arguments[0];
alert( args )
};
}

2) and we call it

{alert GoodBye World}
-> display a standard Alert WIndow.
</syntaxhighlight>


=={{header|Lasso}}==
=={{header|Lasso}}==