Compare commits

...

2 Commits

Author SHA1 Message Date
3aa468c2f6 Remove debug printf 2019-10-31 14:38:06 -07:00
c704187012 Use darken to specify link color 2019-10-31 14:32:34 -07:00
2 changed files with 1 additions and 2 deletions

View File

@ -156,5 +156,4 @@ 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: #1dc868;
$primary-color-dark: darken($primary-color, 10%);
$font-heading: "Lora", serif;
$font-body: "Raleway", serif;
$font-code: "Inconsolata", monospace;