initial commit
This commit is contained in:
commit
5e6bc2679d
5 changed files with 29 additions and 0 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
wscm
|
||||
*.o
|
||||
compile_commands.json
|
||||
.cache
|
||||
.envrc
|
||||
6
Makefile
Normal file
6
Makefile
Normal 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
4
README.md
Normal 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
8
shell.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
clang-tools
|
||||
bear
|
||||
];
|
||||
}
|
||||
|
||||
6
wscm.c
Normal file
6
wscm.c
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
printf("Hello, world!\n");
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue