blob: b2a7386e28e9693a8b728f52760480f9b27dd903 [file] [log] [blame]
// Copyright (c) 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
if (sys.argv.length != 2) {
throw 'argv must be a single file name';
}
file_path = sys.argv[1];
file_content = read(file_path);
print('Content of file ' + file_path + ' is ' + file_content);