This post is from a suggested group
Giestro Full Release 5 is officially out! Check it out on Replit!
View groups and posts below.
Giestro Full Release 5 is officially out! Check it out on Replit!
Giestro for Python update fr-1-4-p is out!
https://replit.com/@pixilmaybe/python-giestro
The boiler.java template has been released at replit.com, view and use now at:
Compact Class Main and PSVM for Java:
import javax.swing.JOptionPane;class Main{public static void main(String[] args)
{
}
}
Welcome to the JavaJavaJava (JJJ) community, where you can share Java, javascript and Boilerjava code as well as ask questions!
Repost of printClr(2):
class printClr:
cPink = '\033[95m'
cBlue = '\033[94m'
cCyan = '\033[96m'
cGreen = '\033[92m'
cYellow = '\033[93m'
cRed = '\033[91m'
cWhite = '\033[0m'
sBold = '\033[1m'
sUnderline = '\033[4m'
end = '\033[0m'
# Colours always start with "c"
# Text styles always start with "s"
# Type "end" at the {printClr.end} of a print() statement to avoid overlapping!
# Type your script below:
example:
print(f"{printClr.cYellow}Hello World{printClr.end}")
OUTPUT:
Hello World
Timity module:
Get time easily.
Copy the following text into your IDE:
import datetime as dt
class timity:
formatt = "%H:%M:%S"