Skip to content

Instantly share code, notes, and snippets.

@iggyvolz
Created April 3, 2020 14:41
Show Gist options
  • Save iggyvolz/60b01331c3b3d9cb1430c4d2c8db9a96 to your computer and use it in GitHub Desktop.
Save iggyvolz/60b01331c3b3d9cb1430c4d2c8db9a96 to your computer and use it in GitHub Desktop.
// class1.phq
@private x:string;
@public __construct()
{
x = "bin";
}
@public foo():int
{
foo:int = 4;
bar:int = 5;
bak:int = foo + bar;
}
@public bar():string
{
return x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment