This is the code you need to align images to the left:
| # This Class would create an instance of a Card object | |
| class Card | |
| attr_accessor :rank, :suit | |
| def initialize(rank, suit) | |
| @rank = rank | |
| @suit = suit | |
| end | |
| def output_card |
| #!/bin/sh | |
| # Clone multiple repositories. | |
| echo "=== CLONENATOR ===" | |
| array=( "https://github.com/angular/angular.git" | |
| "https://github.com/nodejs/node.git" ) | |
| for element in ${array[@]} |
| #!/usr/bin/env python | |
| """ Print all of the clone-urls for a GitHub organization. | |
| It requires the pygithub3 module, which you can install like this:: | |
| $ sudo yum -y install python-virtualenv | |
| $ mkdir scratch | |
| $ cd scratch | |
| $ virtualenv my-virtualenv |