import streamlit as st def main(): st.title("New Space for CCS 229") st.caption("A sample space for our CCS 229 Intelligent Systems course.") val = st.slider('Sample Slider', min_value=0, max_value=50) st.write(f"You have chosen value {val}.") if __name__ == "__main__": main()