mirror of https://github.com/tc39/test262.git
6 lines
106 B
JavaScript
6 lines
106 B
JavaScript
|
export let Cappuccino = "Cappuccino"
|
||
|
|
||
|
export function changeCappuccino(value) {
|
||
|
Cappuccino = value;
|
||
|
}
|