Skip to content

Instantly share code, notes, and snippets.

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