mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 16:41:42 +03:00
15 lines
192 B
Plaintext
15 lines
192 B
Plaintext
/*
|
|
namespace: ParseExpression
|
|
expectation: Pass
|
|
*/
|
|
|
|
!-xx.sqrt()
|
|
x.sqrt().sqrt().sqrt()
|
|
-x.sqrt()
|
|
(-x).sqrt()
|
|
-(x.sqrt())
|
|
(-x.sqrt()).sqrt()
|
|
!x.sqrt()
|
|
(!x).sqrt()
|
|
!(x.sqrt())
|
|
(!x.sqrt()).sqrt() |