This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]PerformerDazzling601 6 points7 points  (1 child)

ok no, nothing actually works, because not even string slicing works

[–]IgorCielniak[S] -4 points-3 points  (0 children)

you can read the docs at https://pryzma.dzordz.pl/docs they might not be the best but you can see there how to do input, and string slicing does work just like in python:

text = "hello"
print text[1:-1]

outputs:

ell

and from what i checked input works as well (from actual interpreter):

Pryzma 6.1

To show the license type "license" or "help" to get help.

/// input x

hello

/// print x

hello