RosettaCodeData/Task/Hello-world-Line-printer/MATLAB/hello-world-line-printer.m

4 lines
75 B
Mathematica
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
fid = fopen('/dev/lp0');
fprintf(fid,'Hello World!\n');
fclose(fid);