import {describe, it, expect} from 'test_lib/test_lib';
import {Compiler} from 'core/compiler/compiler';

export function main() {
  describe('compiler', function() {
    it('should hello', function() {
      print('I am working');
    });
  });
}