10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
|
import {describe, id} from 'spec/spec';
|
||
|
|
||
|
function main() {
|
||
|
describe('compiler', () => {
|
||
|
it('should hello', () => {
|
||
|
print('I am working');
|
||
|
});
|
||
|
});
|
||
|
}
|