Hello world/Text: Difference between revisions

m
→‎{{header|Diego}}: added a bit more context/information
m (added Diego task)
m (→‎{{header|Diego}}: added a bit more context/information)
Line 1,178:
<lang diego>with_computer(comp1)_printer(lp1)_text(Hello World!);</lang>
If the caller is the computer...
<lang diego>with_printerwith_me()_printer(lp1)_text(Hello World!);</lang>
...or can be shortened as...
<lang diego>me()_ptr(lp1)_txt(Hello World!);</lang>
If the computer has more than one printer...
<lang diego>me()_printer()_text(Hello World!);</lang>
If there are more than one computer which have zero or more printers...
<lang diego>with_computer()_printer()_text(Hello World!);</lang>
If there are zero or more printers connected to any thing (device)...
<lang diego>with_printer()_text(Hello World!);</lang>
 
=={{header|DIV Games Studio}}==