linked / app /main.py
Archit Sharma
init streamlit hello world
4377399 unverified
raw
history blame contribute delete
120 Bytes
# app/main.py
import streamlit as st
def main():
st.title("Hello, World!")
if __name__ == "__main__":
main()