Created
June 8, 2019 12:05
-
-
Save porky11/bce75b2547260121b580ecf83c96b858 to your computer and use it in GitHub Desktop.
Some test for functions without explicitly specifying arguments
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
inline va-type@ (T args...) | |
va-lfold none | |
inline "#hidden" (key value) | |
static-if ((typeof value) <= T) | |
return value | |
args... | |
inline va-type@... (T args...) | |
va-rfold none | |
inline (key value result...) | |
let a = result... | |
let _a result... = | |
static-if (none? a) | |
result... | |
else | |
_ none result... | |
static-if ((typeof value) <= T) | |
_ value result... | |
else | |
result... | |
args... | |
va-type@ u32 1 2:u32 3:f32 | |
va-type@... i32 1 2:u32 3:f32 4 5 6:f32 7:u32 | |
sugar afn (name body...) | |
qq fn [name] (_args...) | |
inline this (T) | |
va-type@ T _args... | |
inline these (T) | |
va-type@... T _args... | |
unquote-splice body... | |
sugar ainline (name body...) | |
qq inline [name] (_args...) | |
inline this (T) | |
va-type@ T _args... | |
inline these (T) | |
va-type@... T _args... | |
unquote-splice body... | |
run-stage; | |
afn string? | |
print "Hello" (this string) | |
string? "Bernd" 1 2 3 | |
string? 1 2 3 "Bernd" | |
afn sum | |
+ (these integer) | |
sum 1 2 3 | |
afn show-text | |
print "There are" (this integer) (this string) "drinking" (this real) "bottles of water" | |
show-text 7 "Sheep" 1.5 | |
show-text "cool dudes" 5.0 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment