code example :

        main:
          puts "Hello , World" ; comment
          ; it's new syntax
      

Hello , World in this version

        putc 'H'
        putc 'e'
        putc 'l'
        putc 'l'
        putc 'o'
        putc ' '
        putc 'W'
        putc 'o'
        putc 'r'
        putc 'l'
        putc 'd'
        putc '!'
      

Or you can use of puts , puts function in new version complete in later version you see that puts unsupported

        puts "Hello , World"
      

Pandex tutorial