From e50a31529b9977c473564a7fdc677e855d4219b9 Mon Sep 17 00:00:00 2001 From: Vitor Shen <17490173+shenvitor@users.noreply.github.com> Date: Fri, 10 May 2024 17:22:43 +0200 Subject: [PATCH] test new notebook --- .gitignore | 1 + Hello.ipynb | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 Hello.ipynb diff --git a/.gitignore b/.gitignore index 44ba5fb..fcfe6b0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ # pixi environments .pixi *.egg-info +.ipynb_checkpoints/ diff --git a/Hello.ipynb b/Hello.ipynb new file mode 100644 index 0000000..e99859e --- /dev/null +++ b/Hello.ipynb @@ -0,0 +1,51 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "086f6c1d-4e2d-4a97-85fb-c61cd55634d7", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hello World!\n" + ] + } + ], + "source": [ + "print(\"Hello World!\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f32a577e-5098-4070-b58b-274d4314cb07", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}