Compare commits

..

No commits in common. "3aa468c2f6b7da961fd3b6a9bacf265063dced11" and "a834fd578ea0026cbc32b64003283ef9576dca3d" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -156,4 +156,5 @@ extern void f_main(struct stack* s);
int main(int argc, char** argv) {
struct node_global* first_node = alloc_global(f_main, 0);
struct node_base* result = eval((struct node_base*) first_node);
printf("%d\n", ((struct node_num*) result)->value);
}

View File

@ -1,6 +1,6 @@
$container-width: 800px;
$primary-color: #36e281;
$primary-color-dark: darken($primary-color, 10%);
$primary-color-dark: #1dc868;
$font-heading: "Lora", serif;
$font-body: "Raleway", serif;
$font-code: "Inconsolata", monospace;