-
Notifications
You must be signed in to change notification settings - Fork 0
Home
RedKatKodes edited this page Apr 23, 2023
·
2 revisions
cone is a work in progress programming language made by Michael B. in python to fix some of his problems while using python, such as there not being a built in graphics command.
println(): prints to a new line in console with line number. print(): println() must be used first, prints to most recent printed line
println("hello world!")
print("this was added to the line using print!")
hello world! this was added to the line using print!