v 1.13.0

An Emotional
bytecode interpreted programming language

PriyoScript is a human-first interpreted language with readable keywords, first-class arrays, OOP, modules, and production-focused diagnostics.

Open SourceBytecode VMREPLModule SystemError Codes
// app.priyo
monalisa {
  lisaaTask greet(name) {
    priyoGiveBack "Hi " + name
  }

  priyoKeep user = priyoListenSentence("Your name: ")
  priyoTell.Success(greet(user))
}

Demo Output

Success: Hi Priyo
PriyoScript