RosettaCodeData/Task/Hello-world-Text/Portugol/hello-world-text.portugol
2023-07-01 13:44:08 -04:00

8 lines
242 B
Text

programa {
// funcao defines a new function
// inicio is the entry point of the program, like main in C
funcao inicio() {
// escreva is used to print stuff to the screen
escreva("Hello, world!\n") // no ';' needed
}
}