Skip to content

Instantly share code, notes, and snippets.

@porky11
Created June 8, 2019 12:05
Show Gist options
  • Save porky11/bce75b2547260121b580ecf83c96b858 to your computer and use it in GitHub Desktop.
Save porky11/bce75b2547260121b580ecf83c96b858 to your computer and use it in GitHub Desktop.
Some test for functions without explicitly specifying arguments
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...
print
va-type@ u32 1 2:u32 3:f32
print
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)
print
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