#!/usr/local/bin/rune -x # # should fail at parse time, # this style of overloading is not currently implemented. import "sys"; import ; int main(int ac, char **av) { fubar("hello"); fubar(23); } void fubar(const char *str) { stdio.stdout->show("string ", str); } void fubar(int v) { stdio.stdout->show("value", v); }