0% found this document useful (0 votes)
70 views1 page

Python and Haskell Code Examples

This short document contains code snippets in Python and Haskell. It tests a PDF and includes a Python code sample that imports NumPy and creates an array, as well as a Haskell code sample that prints "Hello!" to demonstrate a simple program.

Uploaded by

David Reaver
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
70 views1 page

Python and Haskell Code Examples

This short document contains code snippets in Python and Haskell. It tests a PDF and includes a Python code sample that imports NumPy and creates an array, as well as a Haskell code sample that prints "Hello!" to demonstrate a simple program.

Uploaded by

David Reaver
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Hello

This is a test pdf. It is substantial!

Python
Here is some Python
import numpy as np

np.array([1, 3, 4])
Isn’t that cool???

Haskell
main :: IO ()
main = putStrLn "Hello!"

You might also like