1# Examples 2 3LibCEED.jl includes three short examples, which are analogues of the two 4examples in `libCEED/examples/ceed`. 5 6These examples are: 7- `ex1-volume-c.jl`, an almost one-to-one translation of `ex1-volume.c`, using 8 the low-level C interface. This example uses low-level user Q-functions 9 defined in `ex1-function-c.jl`. 10- `ex1-volume.jl`, a higher-level more idiomatic version of `ex1-volume.c`, 11 using user Q-functions defined using [`@interior_qf`](@ref). 12- `ex2-surface.jl`, a higher-level, idiomatic version of `ex2-surface.c`. 13