This website requires JavaScript.
Explore
Help
Register
Sign In
retoor
/
wren
Watch
1
Star
0
Fork
0
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
Files
205661713a15cb8536217836c12c6ed3c6bb0467
wren
/
test
/
language
/
setter
/
static.wren
T
8 lines
101 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Setters!
2013-12-20 07:05:31 -08:00
class Foo {
Require parentheses around operator and setter arguments.
2014-04-08 17:54:37 -07:00
static bar=(value) {
"IO" -> "System".
2015-09-15 07:46:09 -07:00
System.print(value)
Setters!
2013-12-20 07:05:31 -08:00
}
}
Foo.bar = "value" // expect: value
Reference in New Issue
Copy Permalink