PlayGround

This is a default note (an info note)

This is an info note

This is an important note

This is a warning note

This is a critical note

This is a tip note

This is a help note

This is an ok note

Let's try some PTPScript...

{ // Comment }
 
{ p = 5 }
{ p }
 
{ q = @p }
{ q }
{ typeof(q) }
{ # loop q as i }
{__CurrentLoop__ ~ " " ~ i}{ # endloop }
 
{ p @= 5 }
{ p }
{ typeof(p) }
{ # loop p as i }
{__CurrentLoop__ ~ " " ~ i}{ # endloop }
 
{ z = p @ q }
{ z }
{ typeof(z) }
{ # loop z as i }
{__CurrentLoop__ ~ " " ~ i}{ # endloop }

This is some output ...