initial commit

This commit is contained in:
Lobo 2026-01-06 11:57:26 -03:00
commit 5e6bc2679d
5 changed files with 29 additions and 0 deletions

5
.gitignore vendored Normal file
View file

@ -0,0 +1,5 @@
wscm
*.o
compile_commands.json
.cache
.envrc

6
Makefile Normal file
View file

@ -0,0 +1,6 @@
CFLAGS := -std=c99 -Og -g -Wpedantic -Wall
.PHONY: clean
wscm: wscm.o
clean:
rm -f wscm wscm.o

4
README.md Normal file
View file

@ -0,0 +1,4 @@
# wolfscheme
An experiment in how quick I can get from zero to a decent Scheme.

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [
clang-tools
bear
];
}

6
wscm.c Normal file
View file

@ -0,0 +1,6 @@
#include <stdio.h>
int main(void) {
printf("Hello, world!\n");
return 0;
}