I want to write some code that uses different types of currencies, eg
struct euro {
int value;
};
struct dollar {
int value;
};
Now I'd like to use the euro and dollars sign in code, something like
euro e = 3€;
dollar d = 3$;
Is this possible somehow?