Skip to content

Instantly share code, notes, and snippets.

@wwall
Created November 10, 2019 19:23
Show Gist options
  • Save wwall/f5c986db0882b2b4827bc92bed4ef53b to your computer and use it in GitHub Desktop.
Save wwall/f5c986db0882b2b4827bc92bed4ef53b to your computer and use it in GitHub Desktop.
#lang scribble/manual
@require[scribble/lp-include]
@(require scribble/racket scribble/manual scribble/eval)
@section{task 1.}
@lp-include["../src/part01.rkt"]
#lang scribble/lp
@(require scribble/racket scribble/manual scribble/eval)
This is simple definiition
@chunk[<testdata>
(define (test-plus x y)
(+ x y))]
result of evalution is
@interaction[(test-plus 1 2)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment