examples
Folders and files
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||
# Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved. This # code is released under a tri EPL/GPL/LGPL license. You can use it, # redistribute it and/or modify it under the terms of the: # # Eclipse Public License version 2.0, or # GNU General Public License version 2, or # GNU Lesser General Public License version 2.1. require 'benchmark-interface' benchmark('mul') { '14 * 14 * 14' } benchmark('pow') { '14 ** 3' }