We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What? Declaring new type of operator.
Why? Extended innovation and usage of operators.
How? Important Rules:
+
-
*
/
>
<
=
$
&
|
!
?
_
\
~
@
^
==
|>
Sample Wyrd Code
declare operator "<~" def <~(op1: Str, op2: Str): Str do op1.concat(op2) end foo = "hello" <~ " world" |> Str.upcase()
Compiled Result
function OP_1(op1, op2) { return op1.concat(op2); } const foo = (OP_1("hello", " world")).toUpperCase();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What?
Declaring new type of operator.
Why?
Extended innovation and usage of operators.
How?
Important Rules:
+
,-
,*
,/
,>
,<
,=
,$
,&
,|
,!
,?
,_
,\
,~
,@
,^
+
,-
,*
,/
,>
,<
,=
,==
,|>
(See Introducing Pipe Operator #67 )Sample Wyrd Code
Compiled Result
The text was updated successfully, but these errors were encountered: