This website requires JavaScript.
Retoor software development
Projects
Research
SearchXNG
Register
Sign In
3 lines
45 B
Plaintext
Raw
Normal View
History
Unescape
Escape
test: add shebang test cases for wren scripts Add three test files covering shebang line handling: a valid shebang with expected output, a shebang at end-of-file without newline, and a shebang on a non-first line expected to produce an error.
2015-01-03 20:53:17 +01:00
#!/bin/wren
feat: replace IO class with System class and remove separate IO module - Delete wren_io.c, wren_io.h, and io.wren source files - Remove multi-arity print overloads and IO.read/IO.time methods - Add System class with print, printAll, write, writeAll methods to core.wren - Update all documentation examples and README to use System.print instead of IO.print
2015-09-15 16:46:09 +02:00
System.print("ok") // expect: ok
Reference in New Issue
Copy Permalink
aef30ca4a1
wren
/
test
/
language
/
shebang
/
shebang.wren