blob: c56e3ea44c7e5e7fca2a7f4ec1c72b90b5dd3a1a [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
import { circular_foo } from "ModuleCircularFoo.js"
export function circular_bar() {
increment();
return circular_foo();
}
export function increment() {
counter++;
}
export var counter = 0;