Demo chat
This is the Demo chat chat channel, created by KajMagnus (KajMagnus), 2016-08-07 06:49:56.405Z
Purpose:
Test chat messages.
E
Erick @erick
Hi.
code = "poetry";
Vaccines are bad. Trump 4 president. Covid is fake. Earth is flat.
PENCILS
for poetry
S
samer @samer
asdfasdf sd
function asdfasdfads(asdfadsf: string): boolean
begin
writeln('hi');
end;
R
renato guarilhacm @rguarilha
qweqweqweqwe]
qw
qw
qw
qw
preformatted text
preformatted text
> quoted text
emphasized text**emphasized text
Heading
protected void HandleSetMethods(IDictionary values)
{
setMethodsArgs = new CMObjectDataSourceSetMethodsEventArgs(values);
DefineSetMethods?.Invoke(this, setMethodsArgs);
}
T
Matt Lilley @thetrime
Markdown test.
foreign_t sftp_error(char* where, sftp_context_t * sftp)
{
term_t except;
char* errmsg;
int len;
int rc = libssh2_session_last_error(sftp->session, &errmsg, &len, 1);
if (rc == LIBSSH2_ERROR_SFTP_PROTOCOL)
{
rc = libssh2_sftp_last_error(sftp->sftp);
if ((except = PL_new_term_ref()) &&
PL_unify_term(except,
PL_FUNCTOR, PL_new_functor(PL_new_atom("sftp_error"), 2),
PL_CHARS, where,
PL_INT, rc))
{
PL_free(errmsg);
return PL_raise_exception(except);
}
}
else
{
if ((except = PL_new_term_ref()) &&
PL_unify_term(except,
PL_FUNCTOR, PL_new_functor(PL_new_atom("ssh_error"), 3),
PL_CHARS, where,
PL_NCHARS, len, errmsg,
PL_INT, rc))
{
PL_free(errmsg);
return PL_raise_exception(except);
}
}
PL_free(errmsg);
return FALSE;
}
