Skip to content

Instantly share code, notes, and snippets.

@func09
Created February 23, 2009 20:58
Show Gist options
  • Save func09/69172 to your computer and use it in GitHub Desktop.
Save func09/69172 to your computer and use it in GitHub Desktop.
package {
public class Test {
public function Test(){
trace("test!");
}
}
}
<?php
class Test {
public function __construct(){
echo "test!";
}
}
?>
#!/usr/bin/env ruby
class Test
def initialize
puts "test!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment