you might wanna start with the basics

<https://nim-lang.org/docs/tut1.html>
    
    
    var deck: seq[Card]
    
    for s in Suit:
      for f in Face:
        deck.add(Card(suit: s, face: f))
    
    
    Run

Reply via email to