Files
wren/test/language/whitespace.wren

27 lines
566 B
Plaintext
Raw Permalink Normal View History

// No indent
System.print("ok") // expect: ok
// Indent with space
System.print("ok") // expect: ok
// Indent with tab
System.print("ok") // expect: ok
// Indent with space then tab
System.print("ok") // expect: ok
// Indent with tab then space
System.print("ok") // expect: ok
// Indent with mixed tab and space
System.print("ok") // expect: ok
2015-01-03 15:10:04 +01:00
// Space in with code
System . print ( "ok" ) // expect: ok
2015-01-03 15:10:04 +01:00
// Tab in with code
System . print ( "ok" ) // expect: ok
2015-01-03 15:10:04 +01:00
// Tab and space mixed in with code
System . print ( "ok" ) // expect: ok