You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import D "mo:base/Debug";
import Text "mo:base/Text";
import Nat8 "mo:base/Nat8";
import Float"mo:base/Float";
type Day = {#Sun; #Mon; #Tue; #Wed; #Thu; #Fri; #Sat;};
let day : Day = #Wed;
type Result = {
#ok : Nat;
#err : Text;
};
var resultOk : Result = #ok(42);
resultOk := #err("Wrongo!");
D.print("resultOk = " # debug_show(resultOk));
let resultErr : Result = #err("Something went wrong");
The text was updated successfully, but these errors were encountered:
Problem:
Describe your problem and steps to reproduce it.
My code:
The text was updated successfully, but these errors were encountered: