Talk:Gurling
Jump to navigation
Jump to search
Welcome to the talk page!
Please add suggestions to the end of the list, there's 2 parts Library Suggestions where you ask for libraries to be added and Programs where you show off your programs
Also add ~~~~ to the end of the suggestion/program, its a signature
This is an example of a suggestion
- Add a
objectslib with support for other Python datatypes. Skyraiderr5 (talk) 15:06, 2 November 2025 (UTC)
An example of a program is the first program in the program section
Library Suggestions
Programs
- Fibonacci program
include io; a = 0; b = 1; while true { io.prn(a); temp = a + b; a = b; b = temp; }Skyraiderr5 (talk) 15:18, 2 November 2025 (UTC)