You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
297 B
14 lines
297 B
import { dump, log, profile } from './debug';
|
|
import { _ } from './core';
|
|
import { fromNumber, sum, toNumber } from './byte';
|
|
|
|
log();
|
|
profile();
|
|
|
|
const program = sum._(fromNumber(10))._(fromNumber(10));
|
|
|
|
try {
|
|
console.log(program.stringify(), ' -> ', toNumber(program));
|
|
} finally {
|
|
dump();
|
|
}
|
|
|