mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-18 23:02:35 +03:00
20 lines
217 B
Plaintext
20 lines
217 B
Plaintext
/*
|
|
namespace: ParseStatement
|
|
expectation: Pass
|
|
*/
|
|
|
|
console.assert(x);
|
|
|
|
|
|
console.error("{}", x);
|
|
|
|
console.error("{}{}", x, y);
|
|
|
|
console.error("x");
|
|
|
|
|
|
console.log("{}", x);
|
|
|
|
console.log("{}{}", x, y);
|
|
|
|
console.log("x"); |