void setup()
{
  size( 200, 200 );
  
  String[] lines = loadStrings( "https://www.student.cs.uwaterloo.ca/~cs106/Winter2018/" );
  for ( int idx = 0; idx < 10; ++idx ) {
    println( lines[idx] );
  }
  
  PImage img = loadImage( "https://www.student.cs.uwaterloo.ca/~cs106/Winter2018/photos/kevin.jpg" );
  image( img, 0, 0, 200, 100 );
}