Jump to content

lstdgtfp

Member
  • Posts

    74
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Profile Information

  • Location
    SF

System

  • CPU
    R7 1700x @ 3.9GHz
  • Motherboard
    ROG Strix x370-F Gaming
  • RAM
    2x 8gb G.Skill TridentZ RGB
  • GPU
    MSI GTX 1070
  • Case
    Phantex P400s TG
  • PSU
    EVGA 850w gold
  • Display(s)
    LG 34" ultrawide
  • Cooling
    Corsair h100i v2
  • Operating System
    Windows 10 + Ubuntu

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

lstdgtfp's Achievements

  1. I made a (very poor) lisp interpreter in Python: https://gist.github.com/jmikkola/b7c6c644dff1c07891c698f0a527a890 It's just powerful enough to let you define functions like map: (def map (fn (f lst) (if (eq lst ()) () (cons (f (head lst)) (map f (tail lst)))))) (def times-10 (fn (n) (* 10 n))) (print (map times-10 (list 1 2 3 4 5)))
×