diff --git a/HelloWorld/hello_world.pp b/HelloWorld/hello_world.pp new file mode 100644 index 00000000..cefc1b6c --- /dev/null +++ b/HelloWorld/hello_world.pp @@ -0,0 +1,12 @@ +// By josephttran - https://github.com/josephttran + +Program Hello; + +Var + name: string; + +begin + writeln('Enter your name: '); + readln(name); + writeln('Hello ', name, '!'); +end. \ No newline at end of file