Casually, do this.
SCAR Code:
program New;
const
pass = #112#97#115#115#119#111#114#100;
begin
writeln(pass);
end.
Less casually, you could make a plugin. I came up with this (rather nooby) but am at a loss as to how to get it into SCAR.
Code:
#include <iostream >
#include <string>
using std :: cout;
using std :: endl;
using namespace std;
extern string encrypt( string instr ); // prototypes of functions used in the code
extern string decrypt( string instr );
string encrypt (string instr )
{
char e[30];
memset( e, '\0', 40 );
instr.copy( e, 30);
for( int i=0; e[i] != '\0'; ++i ) ++e[i];
string string1(e);
return string1;
}
string decrypt(string instr) {
char e[30];
memset( e, '\0', 40 );
instr.copy( e, 30);
for( int i=0; e[i] != '\0'; ++i ) --e[i];
string string2(e);
return string2;
}