Skip to content

Instantly share code, notes, and snippets.

@jperelli
Created May 9, 2015 02:19
Show Gist options
  • Save jperelli/297ae7a994c97ab736cf to your computer and use it in GitHub Desktop.
Save jperelli/297ae7a994c97ab736cf to your computer and use it in GitHub Desktop.
#!/usr/bin/env instantfpc
uses
sysutils;
var
entrada: String;
begin
repeat
readln(entrada);
writeln(uppercase(entrada));
until eoln;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment