Hi during playing with the playground I wasn‘t able to debug some values. I use the hello world example with the following modification:
import Debug “mo:base/Debug”;
actor Echo {
// Say the given phase.
public query func say(phrase : Text) : async Text {
let a : Nat = 20;
Debug.print(debug_show(a));
return phrase;
};
};
I can‘t see the debug value i the log terminal.
Any hints on that?
Cheers Roland