feat: ignore .idea directory completely
This commit is contained in:
parent
e256e5e1ad
commit
1f64f8a176
11 changed files with 9 additions and 73 deletions
|
|
@ -1,11 +0,0 @@
|
|||
import math
|
||||
import datetime
|
||||
|
||||
def greet():
|
||||
"""Prints a hello message with the current date and time."""
|
||||
current_time = datetime.datetime.now()
|
||||
print(f"Hello, World! Current date and time: {current_time}")
|
||||
|
||||
if __name__ == "__main__":
|
||||
greet()
|
||||
|
||||
4
src/main.py
Normal file
4
src/main.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
import jax
|
||||
|
||||
if __name__ == "__main__":
|
||||
print(jax.devices())
|
||||
Reference in a new issue