Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
val x =10; fun power (x:int, y:int) = if y=1 then x else x * power (x,y-1) val z = power 2,3
ComMA を EQUALOP に置き換えるというエラーが表示されます。コードのエラーがわかりません??