This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class FloatHolder { | |
float GetValue() const; | |
void SetValue(float); | |
}; | |
class IntHolder { | |
int GetValue() const; | |
void SetValue(int); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% Any copyright is dedicated to the Public Domain. | |
% http://creativecommons.org/publicdomain/zero/1.0/ | |
:- module test. | |
%==============================================================================% | |
% Released by Transnat Games for testing purposes. | |
% | |
% Causes an assert in the Mercury compiler: | |
% Software Error: hlds.assertion: predicate `hlds.assertion.record_preds_used_in'/4: Unexpected: invalid pred_id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
H4sIAHugJlsA/21RTUsDMRT8K5KTwhaSVGvZnGQReil79CAeXpPUBneTJR/SWtbf7nu1lFZ7eZ | |
DJzLyZZM8ieBP6ifNDyZOv4G1i9Z5xGgcMj6971ofO6tJZVrMG4ir4m2XwYeuMVU2rhJhJrqSY | |
c84qpkPxmdUPY3WhW+xMDO/Wq8U3lygRgiTiXPI4vo1jxdZua82VROwFso0HfXsymHOhpCQbVI | |
aS/9c4y7CELninb560M6oho9umbRd3h0RyJiRazQQaYiGhplRIiSlNLue0jtM6wWk1DeTQaiWn | |
Fz0EpxqYNYLzrJYV62E7iRZ0DhGD3VdsA2mSMkQksXoNXbK/GKRk+1W3uwCNS1dxMJ/gtTUXoC | |
+6s4CuOZYjlMpg6dPMn2XR6h2ST9y8G+iVhhhM0dkFj5U89ITRi7m103CEoeRNiHTRQfoA/9w7 | |
DFcxJCGrdBmT8vEHyzYYyl8CAAA= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include <stdlib.h> | |
#include <ncurses.h> | |
/* setting up typing function */ | |
char * nr_echo( int start_y, int start_x, int h, int w, int *out_count ){ | |
int ch, y, x, end_y, end_x, ch_count ; | |
int ch_count_in; | |
char *stored_line; | |
stored_line = malloc(100000); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:- module multi_math. | |
%==============================================================================% | |
:- interface. | |
%==============================================================================% | |
:- import_module float. | |
% add(A, B, C) :- C = A + B | |
% Used for multi-moded addition. | |
:- pred add(float, float, float). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ mmc --output-libgrades | |
none.gc.spf.stseg.rbmm | |
none.gc.spf.stseg | |
none.gc.spf.debug.stseg | |
none.gc.spf.debug | |
none.gc.memprof.spf.stseg | |
none.gc.debug | |
hlc.gc.spf | |
hlc.gc.pregen | |
hlc.gc.memprof |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:- module testmodule. | |
:- interface. | |
% This exports: | |
% :- type t. | |
% pred do_stuff(int::in, int::in, int::in, t::out) is det. | |
% pred do_stuff(int::in, int::in, int::in, float::in, t::out) is det. | |
:- use_module othermodule. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Users\jester\kashyyyk2>wlink /? | |
Open Watcom Linker Version 1.9 | |
Portions Copyright (c) 1985-2002 Sybase, Inc. All Rights Reserved. | |
Source code is available under the Sybase Open Watcom Public License. | |
See http://www.openwatcom.org/ for details. | |
usage: wlink {directive} | |
commands valid for all executable formats: | |
directive ::= "File" obj_spec{","obj_spec} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
import select | |
import sys | |
class emirc: | |
def __init__(self): | |
self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
# The buffer contains any messages or parts of messages we receive |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Simple IRC Bot for Twitch.tv | |
Developed by Aidan Thomson <aidraj0@gmail.com> | |
""" | |
import lib.irc as irc_ | |
from lib.functions_general import * | |
import lib.functions_commands as commands |
NewerOlder