Off Topic > Off Topic
Programming Megathread
Kochieboy:
Oh boy, I'm going into Unix Programming Environment as my next CS class for college
$trinick:
I program in Java and C++ for work, but 90% of the day I'm writing gnarly SQL queries to the point where I might just bold SQL on my future job applications.
Foxscotch:
$trinick:
--- Quote from: Foxscotch on January 17, 2016, 05:18:31 PM ---
--- End quote ---
My name is Bill
Scars75:
Currently learning haskell and it's a lot of fun. You should add this to the OP:
--- Code: (Haskell) ---main = putStrLn "Hello World!"
--- End code ---
Here's a quick implementation of quick sort just for fun:
--- Code: (Haskell) ---quickSort :: (Ord a, Eq a) => [a] -> [a]
quickSort [] = []
quickSort (x:xs) = smallerList ++ [x] ++ largerList
where smallerList = quickSort $ filter (<=x) xs
largerList = quickSort $ filter (>x) xs
--- End code ---