RosettaCodeData/Task/Hello-world-Graphical/Lambdatalk/hello-world-graphical.lambdatalk

14 lines
248 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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.