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
<?hh | |
function test_splfile(string $file_name) : void | |
{ | |
$file1 = new SplFileObject($file_name); | |
// These loops work fine | |
foreach ($file1 as $line_number => $text) { /* hhvm: Could not find method key in an object of | |
type SplFileObject Typing[4053]) */ | |
echo $text . "\n" . $line_number; | |
} |
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
#!/usr/bin/python | |
# _*_ coding: latin1 _*_ | |
"""This is Textile | |
A Humane Web Text Generator | |
TODO: | |
* Make it work with Python 2.1. | |
* Make it work with Python 1.5.2? Or that's too optimistic? |