Clarifications in delegates

This commit is contained in:
Milo Gilad 2017-08-26 08:49:38 -04:00
parent 82a37a456a
commit b86786023c

View File

@ -189,7 +189,7 @@ string? ok_to_be_null(int? test_int) { } // "?" denotes possible null value
delegate void DelegateDemo(char char_a); delegate void DelegateDemo(char char_a);
void delegate_match(char char_a) { // Matches the delegate's signature void delegate_match(char char_a) { // Matches DelegateDemo's signature
stdout.printf("%d\n"); stdout.printf("%d\n");
} }