Created
April 3, 2020 14:41
-
-
Save iggyvolz/60b01331c3b3d9cb1430c4d2c8db9a96 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 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