q.baseline 264 B

1234567891011121314151617181920212223
  1. undefined
  2. 5
  3. undefined
  4. WScript
  5. print
  6. f
  7. a
  8. a
  9. undefined
  10. a
  11. function f() {
  12. const x = 'a';
  13. WScript.Echo(x);
  14. if (1 > 0)
  15. {
  16. let x;
  17. WScript.Echo(x);
  18. }
  19. WScript.Echo(x);
  20. WScript.Echo(f);
  21. }
  22. undefined