diff --git a/demo/servus_demo.ipynb b/demo/servus_demo.ipynb new file mode 100644 index 0000000..28ca5a5 --- /dev/null +++ b/demo/servus_demo.ipynb @@ -0,0 +1,60 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Demo for MichaelPy" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Import the package" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "vscode": { + "languageId": "plaintext" + } + }, + "outputs": [], + "source": [ + "from michaelpy import servus" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Use it ..." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "vscode": { + "languageId": "plaintext" + } + }, + "outputs": [], + "source": [ + "name = \"Hias\"\n", + "greeting = servus(name)\n", + "print(greeting)" + ] + } + ], + "metadata": { + "language_info": { + "name": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}