Created
January 6, 2014 17:25
-
-
Save CoderPuppy/8286194 to your computer and use it in GitHub Desktop.
bug
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
PObject: class extends PUserData { | |
init: func | |
} | |
PUserData: abstract class {} | |
PCall: class extends PUserData { | |
fromObjects: static func(args: ...) -> This { | |
args each(|arg| | |
match arg { | |
case obj: PObject => | |
} | |
) | |
null | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment