RosettaCodeData/Task/Hello-world-Graphical/Lambdatalk/hello-world-graphical.lambdatalk
2023-07-01 13:44:08 -04:00

13 lines
248 B
Text

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.