On Monday, 9 September 2024 at 17:39:46 UTC, WraithGlade wrote:


import std;
auto parse(char[] s)=>s[9..$-2];
void show(T,string file= __FILE__,int line=__LINE__)(T t){
    writeln(File(file).byLine.drop(line-1).front.parse," == ",t);
}
void main(){
    int i=3;
    show(i++ + ++i * i);
    show(i);
}

Reply via email to