Ajout des fichiers de description des modules racket

This commit is contained in:
Feufochmar 2019-11-06 16:27:38 +01:00
parent 380e47a3d4
commit c4e7d814f0
3 changed files with 28 additions and 0 deletions

8
info.rkt Normal file
View File

@ -0,0 +1,8 @@
#lang info
(define collection "feuforeve.fr")
(define deps '("base"))
(define build-deps '("scribble-lib" "racket-doc" "rackunit-lib"))
(define scribblings '(("scribblings/feuforeve.scrbl" ())))
(define pkg-desc "feuforeve.fr website")
(define version "3.9.0")
(define pkg-authors '(Feufochmar))

10
main.rkt Normal file
View File

@ -0,0 +1,10 @@
#lang racket/base
(module+ test
(require rackunit)
;; Tests to be run with raco test
)
(module+ main
;; Main entry point, executed when run with the `racket` executable or DrRacket.
(displayln "Hello world!"))

View File

@ -0,0 +1,10 @@
#lang scribble/manual
@require[@for-label[feuforeve
racket/base]]
@title{feuforeve}
@author{Feufochmar}
@defmodule[feuforeve]
This module contains the website behind feuforeve.fr.