Created
April 3, 2020 14:44
-
-
Save iggyvolz/8f3a092886dc1675ce2a712135da7d05 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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