% Define the quotequote = 'The best thing about a boolean is even if you are wrong, you are only off by a bit. -Anonymous';
% Display the quote in the command window.disp(quote)
181 chars
6 lines
This will output the following:
main.m
The best thing about a boolean is even if you are wrong, you are only off by a bit. -Anonymous
95 chars
2 lines
You can replace the quote with any other wise quote you like.