Try doing some basic maths questions in the Lean Theorem Prover. Functions, real numbers, equivalence relations and groups. Click on README.md and then on "Open in CoCalc with one click".
1DEPLOY_NIGHTLY_GITHUB_USER=leanprover-community-bot 2 3set -e 4set -x 5 6# By default, github actions overrides the credentials used to access any 7# github url so that it uses the github-actions[bot] user. We want to access 8# github using a different username. 9git config --unset http.https://github.com/.extraheader 10 11git_hash="$(git log -1 --pretty=format:%h)" 12git clone https://github.com/leanprover-community/doc-gen.git 13cd doc-gen 14sed -i "s/rev = \"\S*\"/rev = \"$git_hash\"/" leanpkg.toml 15echo -e "builtin_path\npath ./src\npath ../src" > leanpkg.path 16git clone "https://$DEPLOY_NIGHTLY_GITHUB_USER:$DEPLOY_NIGHTLY_GITHUB_TOKEN@github.com/leanprover-community/mathlib_docs.git" 17rm -rf mathlib_docs/docs/ 18elan override set leanprover-community/lean:nightly 19python3 -m pip install --upgrade pip 20pip3 install markdown2 toml 21./gen_docs -w -r "../" -t "mathlib_docs/docs/" 22cd mathlib_docs/docs 23git config user.email "leanprover.community@gmail.com" 24git config user.name "leanprover-community-bot" 25git add -A . 26git commit -m "automatic update to $git_hash" 27git push 28 29