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.

18 lines
370 B

import { Foo } from './foo';
import { Bar } from './bar';
import { Baz } from './baz';
import { Qux } from './qux';
import { Corge } from './corge';
import { Arrow } from './arrow';
console.log( 'before' );
var foo = new Foo(5);
var bar = new Bar(5);
var baz = new Baz(5);
var qux = new Qux(5);
var corge = Corge(5);
var arrow = new Arrow(5);
console.log( 'after' );