var x: ?u8 = null;
var y: ?i32 = null;
if(x y) |a b| {
}
Be able go handle more that one
you can emulate this by chaining if-expressions:
if (x) |a| if (y) |b| {
};
Though you do have to use semicolons in that case.
zigo
3
Sze
4
Please change the topic title to something meaningful, it should tell the reader what this topic is about.
Previous related topics: