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
| 2013-05-24 17:03:19 E An error was encountered with your configuration. | |
| 2013-05-24 17:03:19 E You must specify a valid rendermode, not 'smooth_lightning'. See the docs for valid rendermodes. |
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
| do x <- foo | |
| y <- bar | |
| return x * y | |
| (which is (almost*) equivalent to (in python syntax)) | |
| foo.bind(lambda x: | |
| bar.bind(lambda y: | |
| x * y)) |
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
| Name: -1 (null) | |
| Zip: 0 | |
| Scripts: | |
| event load-card { | |
| activate-plst 1; | |
| } | |
| event display_update { |
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
| Gehn -+- (?) | |
| | | |
| Kahlis -+- Tasera | |
| | | |
| Aitrus -+- Ti'ana | |
| | | |
| Gehn -+- Keta | |
| | | |
| Atrus -+- Katran | |
| +-------+--------+ |
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
| Raymond. Died June 12, 2013. | |
| Intel E7500 Core 2 Duo 2.93GHz/3M/1066/06 | |
| GeForce 8400GS 512MB DDR3 PCI-E EVGA | |
| 2x1GB dual channel PC2-6400 5-5-5-15 | |
| http://i.imgur.com/rI3zWLQ.jpg | |
| RIP |
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 SuperClass : Object | |
| { | |
| public class void test(); | |
| } | |
| class SubClass : SuperClass | |
| { | |
| static construct | |
| { | |
| // error: Access to instance member `SuperClass.test' denied |
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 "co-string.h" | |
| #include <stdio.h> | |
| static void co_string_construct(void* p) | |
| { | |
| printf("string construct\n"); | |
| CoString* self = p; | |
| self->data = NULL; | |
| self->length = 0; | |
| } |
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 "cobalt.h" | |
| #include <stdio.h> | |
| int main(int argc, char** argv) | |
| { | |
| foreach(x in co_range(0, 10) as int) | |
| { | |
| printf("iterating %i\n", *x); | |
| } | |
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
| . |
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
| OBJECTS = cobalt.o co-new.o co-iterate.o co-range.o test.o | |
| TARGET = test | |
| CFLAGS = -Wall -Werror -std=gnu99 | |
| .PHONY : all clean | |
| all : ${TARGET} | |
| clean : | |
| rm -f ${TARGET} ${OBJECTS} |