Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. mv [f ".lisp" => f ++ ".cl"]
  2.  
  3. sum (map [file:f int:s => s] (read-lines ./file.txt))
  4. read-lines ./file.txt | map [File:f Int:s => s] | sum
  5.  
  6. thread-map [json:j => j | :repos] (get-users-from-github) | append
  7.  
  8. sum [x | x <- [1..999], x % 3 == 0 || x % 5 == 0]
  9.  
  10. str = read-file ./file.txt
  11. [maximizing (product i) | i <- ()]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement