This file contains 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
// This is written in pseudo language | |
class Foo { | |
def bar() { | |
ret "it Works!"; | |
} | |
} | |
$f = Foo.new(); | |
print $f.bar(); |
This file contains 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
# http://caddyserver.com/download | |
http://localhost:8080 { | |
startup php.cmd & | |
fastcgi / 127.0.0.1:9123 php | |
} |
This file contains 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
// This is written in pseudo language | |
class Foo { | |
def bar() { | |
ret "it Works!"; | |
} | |
} | |
$f = Foo.new(); | |
print $f.bar(); |
This file contains 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
# http://caddyserver.com/download | |
http://localhost:8080 { | |
startup php.cmd & | |
fastcgi / 127.0.0.1:9123 php | |
} |