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
#!/bin/sh | |
# A shell script that tries its best to convert documents thrown at it | |
# to pandoc's extended markdown. | |
# | |
# Depends on: | |
# | |
# + textutil: an OS X only command line utility | |
# + odt2pandoc.py: a tweaked version of odt2txt.py | |
# + pdftohtml: a utility for converting pdf to html |
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(); |